Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

[MXNET-1413] Adding Large Tensor support for sort operators #15170

Merged
merged 1 commit into from
Jun 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/operator/tensor/init_op.h
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ void EyeFill(const nnvm::NodeAttrs& attrs,

struct range_fwd {
template<typename DType>
MSHADOW_XINLINE static void Map(index_t i, int repeat, DType start, DType step,
MSHADOW_XINLINE static void Map(index_t i, index_t repeat, DType start, DType step,
int req, DType* out) {
KERNEL_ASSIGN(out[i], req, start + (i/repeat) * step);
}
Expand Down
Loading