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
Move Windows CI build to a 64-bit toolchain to fix 'out of heap space'. #15882
Closed
Closed
Changes from 11 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
9ade21f
Fix heap space errors by upgrading to 64-bit cl.exe?
DickJC123 b6223ed
Try vcvarsall.bat.
DickJC123 1506103
Add missing amd64 arg.
DickJC123 681f875
Try simpler vcvars64.bat.
DickJC123 f467bd1
Looking for location of vcvars64.bat.
DickJC123 beb689a
Temporarily try VS2017.
DickJC123 6a41b63
Reinstate VC2015: CI machines missing VC2017-compatible OpenCV.
DickJC123 348523f
Trigger CI.
DickJC123 0b3aac5
Trigger CI.
DickJC123 9e38d35
Speed up test_random.py:test_shuffle to get past CI timeouts.
DickJC123 561882a
Trigger CI.
DickJC123 9eaf3a5
Fix flakey test_operator.py:test_laop_6.
DickJC123 4e177d6
Correct use of check_numeric_gradient.
DickJC123 e3bfd80
Revert "Fix flakey test_operator.py:test_laop_6."
DickJC123 4eb990c
Trigger CI- seeing Windows access violation on laop_6.
DickJC123 43f890e
Trigger CI- seeing build timeouts on centos-cpu.
DickJC123 a65820b
Setting MXNET_MODULE_SEED. laop_6 segfault data driven?
DickJC123 0075dfc
Set laop_6 seed.
DickJC123 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
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.
curious to know what difference it makes by moving sort?
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.
There are no random shapes in test_shuffle so its runtime, even give the sort, should be fairly consistent. My only explanation for the runtime variation is that maybe there's multiple cpu runners on the same machine. Looking for confirmation from @marcoabreu.
Moving the sort was just a style preference, not performance driven. The biggest runtime savings came from introducing the
if stride > 1:
clause to avoid needless work for the last big 1D test input. The rest was just some further perf polishing.I keep stumbling on flakey tests with this PR, so my last commit is fixing laop_6. A bit of bad luck I would say.
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.
we run up to 4 jobs per windows-cpu machine. 1 job per windows-gpu machine.