add a comment for

cblas_new
fengjiayi 8 years ago
parent 7de10ee7e2
commit 778a1a9f87

@ -81,6 +81,13 @@ std::vector<int> vectorize(const DDim& ddim);
ssize_t product(const DDim& ddim);
/**
* \brief Slice a ddim
*
* Slice dim with [begin, end).
* e.g. DDim d = make_ddim({1,2,3,4,5});
* slice_ddim(d, 1, 3); ====> {2,3}
*/
DDim slice_ddim(const DDim& dim, int begin, int end);
/**

Loading…
Cancel
Save