This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
[MXNET-1185] [WIP] Support large array in several operators #13191
Closed
Closed
Changes from 13 commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
a572198
Support large integer in operators
apeforest e37a06b
fix large array in sum
apeforest e48b274
Fix large array issue in slice operation
apeforest b183c3f
fix bug in shape
apeforest fcebf5a
fix getitem with large index
apeforest 3c7557b
fix bug in slice operator
apeforest 904f09b
fix bug in random uniform op
apeforest 08bd8ab
add nightly test
apeforest 244f386
fix lint error
apeforest 3ecd257
fix compilation error on gpu
apeforest c70afe8
fix gpu compilation
apeforest ffcd175
fix build issue
apeforest dbe0e6c
fix windows build error
apeforest 0680184
fix build issue in windows
apeforest 8fda02a
fix omp build issue
apeforest 87cd144
fix cpp-package build error
apeforest 7afc7a8
fix mkldnn build
apeforest 862be24
fix an array size bound
apeforest 22213fa
add constants in tests
apeforest cbaa553
fix sparse array
apeforest 7eca035
fix unit test
apeforest 1b48d4a
fix unit test
apeforest cb2ee1e
fix R and scala package build
apeforest 08471f2
Fix build error in scala, julia, perl
apeforest e5a3b32
fix a typo
apeforest 629a7c5
fix R-package scala-package compiation error
apeforest 2dd990a
fix scala unit test
apeforest 5b0cd3a
fix python2 unit test
apeforest 43ba3aa
fix scala unit test
apeforest 5286f63
fix scala unit test
apeforest 7247e6b
fix scala build
apeforest f8839b3
fix python unit test
apeforest e1cd1cd
update scala-package to fix unittest
apeforest e0f4e2d
Merge remote-tracking branch 'upstream/master' into bugfix/large-array
apeforest e0fe05c
fix scala unit test
apeforest 024a0ce
fix array typecode for python 2 and python 3
apeforest 1f3361b
lint it
apeforest 23579e1
Merge remote-tracking branch 'upstream/master' into bugfix/large-array
apeforest 1cd9b88
lint it again
apeforest 335e896
fix python include error
apeforest a08c79e
fix unit test
apeforest 69703fc
lint me in
apeforest 01952c5
fix python unit test in python2 windows
apeforest a68bd97
fix perl-package unit test
apeforest c1b14d1
fix perl package
apeforest a3daa9b
Merge remote-tracking branch 'upstream/master' into bugfix/large-array
apeforest File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this be longlong or just long?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be longlong. c_long is the same as c_int in python ctypes.