-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Retire some futures that Vass pointed out (in August 2023!) that I'd …
…fixed (#26447) [trivial, not reviewed, though suggested by @vasslitvinov] I believe these were resolved as a result of #22657
- Loading branch information
Showing
10 changed files
with
68 additions
and
86 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
(d = blockDist | ||
--------- | ||
distributes: {1..2} | ||
across locales: LOCALE0 | ||
indexed via: {0..0} | ||
resulting in: | ||
[0] locale 0 owns chunk: {-9223372036854775808..9223372036854775807} | ||
) | ||
(d = blockDist | ||
--------- | ||
distributes: {2..3} | ||
across locales: LOCALE0 | ||
indexed via: {0..0} | ||
resulting in: | ||
[0] locale 0 owns chunk: {-9223372036854775808..9223372036854775807} | ||
) |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,22 @@ | ||
(d = Block | ||
------- | ||
distributes: [1..2] | ||
across locales: LOCALE0 | ||
indexed via: [0..0] | ||
(d = blockDist | ||
--------- | ||
distributes: {1..2} | ||
across locales: LOCALE0 LOCALE1 LOCALE2 LOCALE3 | ||
indexed via: {0..3} | ||
resulting in: | ||
[0] locale 0 owns chunk: [-2147483648..2147483647] | ||
[0] locale 0 owns chunk: {-9223372036854775808..1} | ||
[1] locale 1 owns chunk: {2..1} | ||
[2] locale 2 owns chunk: {2..2} | ||
[3] locale 3 owns chunk: {3..9223372036854775807} | ||
) | ||
(d = Block | ||
------- | ||
distributes: [2..3] | ||
across locales: LOCALE0 | ||
indexed via: [0..0] | ||
(d = blockDist | ||
--------- | ||
distributes: {2..3} | ||
across locales: LOCALE0 LOCALE1 LOCALE2 LOCALE3 | ||
indexed via: {0..3} | ||
resulting in: | ||
[0] locale 0 owns chunk: [-2147483648..2147483647] | ||
[0] locale 0 owns chunk: {-9223372036854775808..2} | ||
[1] locale 1 owns chunk: {3..2} | ||
[2] locale 2 owns chunk: {3..3} | ||
[3] locale 3 owns chunk: {4..9223372036854775807} | ||
) |
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
test/types/records/sungeun/distInRecordInClass.comm-gasnet.good
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
test/types/records/sungeun/distInRecordInClass.comm-none.good
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{r = (d = blockDist | ||
--------- | ||
distributes: {1..2} | ||
across locales: LOCALE0 | ||
indexed via: {0..0} | ||
resulting in: | ||
[0] locale 0 owns chunk: {-9223372036854775808..9223372036854775807} | ||
)} | ||
{r = (d = blockDist | ||
--------- | ||
distributes: {2..3} | ||
across locales: LOCALE0 | ||
indexed via: {0..0} | ||
resulting in: | ||
[0] locale 0 owns chunk: {-9223372036854775808..9223372036854775807} | ||
)} |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,22 @@ | ||
{r = (d = Block | ||
------- | ||
distributes: [1..2] | ||
across locales: LOCALE0 | ||
indexed via: [0..0] | ||
{r = (d = blockDist | ||
--------- | ||
distributes: {1..2} | ||
across locales: LOCALE0 LOCALE1 LOCALE2 LOCALE3 | ||
indexed via: {0..3} | ||
resulting in: | ||
[0] locale 0 owns chunk: [-2147483648..2147483647] | ||
[0] locale 0 owns chunk: {-9223372036854775808..1} | ||
[1] locale 1 owns chunk: {2..1} | ||
[2] locale 2 owns chunk: {2..2} | ||
[3] locale 3 owns chunk: {3..9223372036854775807} | ||
)} | ||
{r = (d = Block | ||
------- | ||
distributes: [2..3] | ||
across locales: LOCALE0 | ||
indexed via: [0..0] | ||
{r = (d = blockDist | ||
--------- | ||
distributes: {2..3} | ||
across locales: LOCALE0 LOCALE1 LOCALE2 LOCALE3 | ||
indexed via: {0..3} | ||
resulting in: | ||
[0] locale 0 owns chunk: [-2147483648..2147483647] | ||
[0] locale 0 owns chunk: {-9223372036854775808..2} | ||
[1] locale 1 owns chunk: {3..2} | ||
[2] locale 2 owns chunk: {3..3} | ||
[3] locale 3 owns chunk: {4..9223372036854775807} | ||
)} |
This file was deleted.
Oops, something went wrong.