5 files changed
+17
-4
lines changedLines changed: 13 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
1 | 14 |
| |
2 | 15 |
| |
3 | 16 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
15 | 15 |
| |
16 | 16 |
| |
17 | 17 |
| |
18 |
| - | |
| 18 | + | |
19 | 19 |
| |
20 | 20 |
| |
21 | 21 |
| |
|
Submodule nanos6-fpga updated 95 files
- Makefile.am+22-16
- README.md+39-13
- autogen.sh+108-41
- configure.ac+5-1
- deps/jemalloc-5.3.0.tar.gz
- docs/devices/CUDA.md+134-66
- docs/devices/Devices.md+1-1
- loader/config-parser.c+3-3
- loader/loader.c+16-1
- m4/ax_subdirs_configure.m4+335
- m4/jemalloc.m4+58-22
- scripts/nanos6_defconfig.toml+4
- src/dependencies/discrete/devices/CUDAReductionStorage.cpp+3-3
- src/hardware/device/cuda/CUDAAccelerator.cpp+98-84
- src/hardware/device/cuda/CUDAAccelerator.hpp+4-1
- src/hardware/device/cuda/CUDAFunctions.hpp+38-30
- src/hardware/device/directory/DeviceDirectory.cpp+8-8
- src/hardware/device/directory/DeviceDirectory.hpp+3-3
- src/hardware/device/directory/DirectoryEntry.hpp+2-2
- src/hardware/device/directory/IntervalMap.hpp+8-5
- src/hardware/device/fpga/FPGAAccelerator.cpp+1-1
- src/hardware/device/fpga/FPGAReverseOffload.cpp+47-41
- src/hardware/device/fpga/FPGAReverseOffload.hpp+3-2
- src/memory/allocator/jemalloc/MemoryAllocator.hpp+6
- src/support/MathSupport.hpp+7-8
- src/support/config/ConfigCentral.cpp+1
- src/tasks/Symbols.hpp+1-1
- tests/Utils.hpp+52
- tests/UtilsCUDA.hpp+23
- tests/directive_based/blocking/blocking.cpp+17-16
- tests/directive_based/clang/Makefile.am+45-11
- tests/directive_based/commutative/commutative-stencil.cpp+3-3
- tests/directive_based/commutative/simple-commutative.cpp+6-5
- tests/directive_based/cpu-activation/ConditionVariable.hpp+12-10
- tests/directive_based/cpu-activation/cpu-activation.cpp+5-4
- tests/directive_based/critical/critical.cpp+4-3
- tests/directive_based/cuda/cuda-kernargs-kernel.cu+22
- tests/directive_based/cuda/cuda-kernargs.cpp+50
- tests/directive_based/cuda/cuda-kernargs.hpp+32
- tests/directive_based/cuda/cuda-ndrange-kernel.cu+22
- tests/directive_based/cuda/cuda-ndrange.cpp+63
- tests/directive_based/cuda/cuda-ndrange.hpp+25
- tests/directive_based/cuda/cuda-saxpy.cpp+11-16
- tests/directive_based/cuda/cuda-shmem-kernel.cu+19
- tests/directive_based/cuda/cuda-shmem.cpp+33
- tests/directive_based/cuda/cuda-shmem.hpp+16
- tests/directive_based/dependencies/dep-early-release.cpp+4-4
- tests/directive_based/dependencies/dep-er-and-weak.cpp+4-6
- tests/directive_based/dependencies/dep-nonest.cpp+40-55
- tests/directive_based/dependencies/dep-wait.cpp+4-4
- tests/directive_based/dependencies/if0.cpp+4-5
- tests/directive_based/discrete/discrete-deps-early-release.cpp+4-4
- tests/directive_based/discrete/discrete-deps-er-and-weak.cpp+4-6
- tests/directive_based/discrete/discrete-deps-nonest.cpp+35-33
- tests/directive_based/discrete/discrete-deps-wait.cpp+4-4
- tests/directive_based/discrete/discrete-deps.cpp+4-4
- tests/directive_based/discrete/discrete-release.cpp+14-16
- tests/directive_based/discrete/discrete-simple-commutative.cpp+11-10
- tests/directive_based/dlb/dlb-cpu-management.cpp+4-3
- tests/directive_based/dlb/dlb-cpu-sharing-active-process.cpp+6-7
- tests/directive_based/dlb/dlb-cpu-sharing-passive-process.cpp+1-1
- tests/directive_based/dlb/dlb-cpu-sharing.cpp+5-6
- tests/directive_based/events/events-dep.cpp+2-2
- tests/directive_based/events/events.cpp+6-5
- tests/directive_based/fibonacci/fibonacci.cpp+3-2
- tests/directive_based/linear-regions/lr-early-release.cpp+11-12
- tests/directive_based/linear-regions/lr-er-and-weak.cpp+11-10
- tests/directive_based/linear-regions/lr-nonest-upgrades.cpp+11-12
- tests/directive_based/linear-regions/lr-nonest.cpp+11-12
- tests/directive_based/linear-regions/lr-release.cpp+14-16
- tests/directive_based/mercurium/Makefile.am+2-3
- tests/directive_based/numa/numa-allocations.cpp+3-3
- tests/directive_based/numa/numa-auto.cpp+3-3
- tests/directive_based/numa/numa-bitmask-manip.cpp+3-3
- tests/directive_based/numa/numa-irregular-allocations.cpp+3-3
- tests/directive_based/numa/numa-off.cpp+3-3
- tests/directive_based/numa/numa-on.cpp+3-3
- tests/directive_based/numa/numa-wildcards.cpp+3-3
- tests/directive_based/onready/onready-events.cpp+9-15
- tests/directive_based/onready/onready.cpp+2-2
- tests/directive_based/reductions/red-firstprivate.cpp+1-1
- tests/directive_based/reductions/red-nest-other.cpp+3-2
- tests/directive_based/reductions/red-nest.cpp+5-4
- tests/directive_based/reductions/red-nonest.cpp+28-40
- tests/directive_based/reductions/red-nqueens.cpp+1-1
- tests/directive_based/reductions/red-stress.cpp+4-3
- tests/directive_based/scheduling/scheduling-wait-for.cpp+6-29
- tests/directive_based/taskloop/discrete-taskloop-nested-dep-multiaxpy.cpp+5-4
- tests/directive_based/taskloop/taskloop-dep-multiaxpy.cpp+10-6
- tests/directive_based/taskloop/taskloop-multiaxpy.cpp+10-6
- tests/directive_based/taskloop/taskloop-nested-dep-multiaxpy.cpp+10-6
- tests/directive_based/taskloop/taskloop-nonpod.cpp+3-2
- tests/directive_based/taskloop/taskloop-nqueens.cpp+3-2
- tests/directive_based/taskloop/taskloop-wait.cpp+3-2
- tests/select-version.sh+2-2
0 commit comments