eric-haibin-lin commented on a change in pull request #8814: csr slice operator, gpu implementation
URL: https://github.com/apache/incubator-mxnet/pull/8814#discussion_r153581511
##########
File path: src/operator/tensor/matrix_op.cu
##########
@@ -22,11 +22,111 @@
* \file matrix_op.cu
* \brief GPU Implementation of matrix operations
*/
+#include <cub/cub.cuh>
#include "./matrix_op-inl.h"
#include "./elemwise_unary_op.h"
+
namespace mxnet {
namespace op {
+
+
+// compute the number of elements of every row
+struct SliceMarkCsrIndPtr {
Review comment:
Please add brief documentation for the parameters of the kernel
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
users@infra.apache.org
With regards,
Apache Git Services
|