-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This PR fixes #3088. In order to reproduce it I need to set the `ARKOUDA_DEVELOPER` flag to enable runtime checks, which I should've figured out sooner... Once we do this we get the following error message ```chapel $CHPL_HOME/modules/internal/ChapelArray.chpl:1164: error: halt reached - array slice out of bounds note: slice index was 804..815 but array bounds are 0..814 ``` So I made all the loops serially and printed out the domains to find where the off by one was happening. This gives the right result with both `ARKOUDA_DEV` and `CHPL_DEV` set for the set seed and random. I tested this with various numbers of locales Co-authored-by: Tess Hayes <stress-tess@users.noreply.github.com>
- Loading branch information
1 parent
8dc679d
commit 8c1c57e
Showing
3 changed files
with
33 additions
and
36 deletions.
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