We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c3d828 commit 1079387Copy full SHA for 1079387
docs/paper/paper.bib
@@ -18,7 +18,7 @@ @article{mortensen_joss
18
volume = {3},
19
number = {31},
20
pages = {1071},
21
- doi = {https://doi.org/10.21105/joss.01071}
+ doi = {10.21105/joss.01071}
22
}
23
24
@inproceedings{mortensen17,
tests/test_darray.py
@@ -41,6 +41,7 @@ def test_2Darray():
41
a[:] = MPI.COMM_WORLD.Get_rank()
42
b = a.redistribute(newaxis)
43
a = b.redistribute(out=a)
44
+ a = b.redistribute(a.alignment, out=a)
45
s0 = MPI.COMM_WORLD.reduce(np.linalg.norm(a)**2)
46
s1 = MPI.COMM_WORLD.reduce(np.linalg.norm(b)**2)
47
if MPI.COMM_WORLD.Get_rank() == 0:
0 commit comments