Skip to content

Commit

Permalink
Merge branch 'master' into distexprs2
Browse files Browse the repository at this point in the history
  • Loading branch information
lightsighter committed Dec 20, 2021
2 parents cf4f5e7 + 088791e commit bf5c956
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
This file lists the major changes as they appear in the stable branch. No
attempt is made to keep this list accurate for the master branch.

Version 21.12.0 (December ??, 2021)
* Realm
- Performance improvements for multi-dimensional copies, especially
inter-process transfers
- Support for loading CUDA driver (if present) at runtime instead of
link time, allowing same binary to be used on systems with and without
CUDA-capable GPUs (enabled with -DLegion_CUDA_DYNAMIC_LOAD=ON in
cmake build)
* Build
- Cmake allows control of max nodes (-DLegion_MAX_NUM_NODES=...) and
max processors/node (-DLegion_MAX_NUM_PROCS=...) supported by
Legion build

Version 21.09.0 (September 28, 2021)
* Realm
- Numerous bug fixes in the `gasnetex` network layer
Expand Down
2 changes: 1 addition & 1 deletion runtime/realm/gasnetex/gasnetex_internal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1711,7 +1711,7 @@ namespace Realm {
// no more completion replies, but do pushing if there are
// ready packets
ncomps = 0;
do_push = has_ready_packets;
do_push = has_ready_packets || !put_head.load();
}
}
} else {
Expand Down

0 comments on commit bf5c956

Please sign in to comment.