Commit a045c81
authored
Parallel concatenate (#5926)
* Simplify concatenate
* First attempt at parallel concatenate
* Clean up a bit
* Add support for comparing different data types
* Undo unnessary change
* More tests
* Use faster lookup
* Add test to show that NaNs are considered equal
* Avoid inserting closures into the Dask graph
* Fix type hints
* Compute numpy array hashes immediately
* Concatenate 25 cubes instead of 2
* Improve test coverage
* Add whatsnew entry
* Various improvements from review
* Use correct value for chunks for numpy arrays
* Python 3.10 compatibility
* Avoid creating derived coordinates multiple times
* Support comparing differently shaped arrays
* Rewrite for code style without multiple returns
* Remove print call
* Better hashing algorithm
* Add more information to release notes1 parent 13017e3 commit a045c81
File tree
6 files changed
+524
-168
lines changed- benchmarks/benchmarks
- docs/src/whatsnew
- lib/iris
- tests
- integration/concatenate
- unit/concatenate
6 files changed
+524
-168
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| 7 | + | |
| 8 | + | |
7 | 9 | | |
8 | 10 | | |
9 | 11 | | |
| 12 | + | |
10 | 13 | | |
11 | 14 | | |
12 | 15 | | |
| |||
44 | 47 | | |
45 | 48 | | |
46 | 49 | | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
56 | | - | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
57 | 67 | | |
58 | 68 | | |
59 | | - | |
| 69 | + | |
60 | 70 | | |
61 | 71 | | |
62 | 72 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
60 | 72 | | |
61 | 73 | | |
62 | 74 | | |
| |||
0 commit comments