├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab ├── custom-jobs-and-variables.yml ├── jobs │ ├── corona.yml │ ├── dane.yml │ ├── matrix.yml │ ├── tioga.yml │ └── tuolumne.yml └── subscribed-pipelines.yml ├── .gitmodules ├── .uberenv_config.json ├── CMakeLists.txt ├── COPYRIGHT ├── LICENSE ├── NOTICE ├── README.md ├── RELEASE_NOTES.md ├── benchmarks ├── BenchmarkArrayView.cpp ├── BenchmarkForall.cpp ├── BenchmarkHostDeviceMap.cpp ├── BenchmarkNumeric.cpp └── CMakeLists.txt ├── cmake ├── Setup.cmake ├── SetupBLTWrapper.cmake ├── SetupCompilerOptions.cmake ├── SetupDependencies.cmake ├── SetupMacros.cmake ├── SetupOptions.cmake ├── care-config.cmake.in └── modules │ └── FindCUB.cmake ├── debug ├── gdb │ └── care-gdb.py ├── msvs │ └── NatvisFile.natvis └── totalview │ └── host_device_ptr.tvd ├── docs ├── CMakeLists.txt ├── doxygen │ ├── CMakeLists.txt │ └── Doxyfile.in └── sphinx │ ├── CMakeLists.txt │ ├── conf.py │ ├── data_structures.rst │ ├── index.rst │ ├── infrastructure.rst │ ├── install.rst │ ├── loop_fuser.rst │ └── tutorial.rst ├── examples ├── CMakeLists.txt ├── DeviceASAN.cpp ├── RaceConditions.cpp ├── ScanLoop.cpp └── StreamLoop.cpp ├── host-configs └── lc │ ├── toss_4_x86_64_ib │ ├── clang.cmake │ ├── clang_tsan.cmake │ ├── intel.cmake │ └── nvcc_clang.cmake │ └── toss_4_x86_64_ib_cray │ └── amdclang.cmake ├── reproducers ├── CMakeLists.txt └── ReproducerManagedPtr.cpp ├── scripts ├── check-license-info.sh ├── gitlab │ └── build_and_test.sh ├── make_release_tarball.sh ├── spack_packages │ └── spack_repo │ │ └── llnl_care │ │ ├── packages │ │ └── README.md │ │ └── repo.yaml └── update-copyright.sh ├── src ├── CMakeLists.txt └── care │ ├── ArrayView.h │ ├── CHAICallback.cpp │ ├── CHAICallback.h │ ├── CHAIDataGetter.h │ ├── CMakeLists.txt │ ├── Debug.h │ ├── DebugPlugin.cpp │ ├── DebugPlugin.h │ ├── DefaultMacros.h │ ├── ExecutionSpace.cpp │ ├── ExecutionSpace.h │ ├── FOREACHMACRO.h │ ├── GPUMacros.h │ ├── GPUWatchpoint.h │ ├── KeyValueSorter.h │ ├── KeyValueSorter_decl.h │ ├── KeyValueSorter_impl.h │ ├── KeyValueSorter_inst.h │ ├── LoopFuser.cpp │ ├── LoopFuser.h │ ├── PluginData.cpp │ ├── PluginData.h │ ├── PointerTypes.h │ ├── ProfilePlugin.cpp │ ├── ProfilePlugin.h │ ├── Setup.h │ ├── SortFuser.h │ ├── algorithm.h │ ├── algorithm_decl.h │ ├── algorithm_impl.h │ ├── array.h │ ├── atomic.h │ ├── care.cpp │ ├── care.h │ ├── care_inst.cpp │ ├── care_inst.h │ ├── config.h.in │ ├── detail │ └── test_utils.h │ ├── device_ptr.h │ ├── forall.h │ ├── host_device_map.h │ ├── host_device_ptr.h │ ├── host_ptr.h │ ├── local_host_device_ptr.h │ ├── local_ptr.h │ ├── managed_ptr.h │ ├── numeric.h │ ├── openmp.h │ ├── policies.h │ ├── scan.cpp │ ├── scan.h │ ├── scan_impl.h │ ├── single_access_ptr.h │ └── util.h ├── test ├── Benchmarks.cpp ├── CMakeLists.txt ├── TestAlgorithm.cpp ├── TestArray.cpp ├── TestForall.cpp ├── TestKeyValueSorter.cpp ├── TestLoopFuser.cxx ├── TestManagedPtr.cpp ├── TestNestedMA.cpp ├── TestNumeric.cpp ├── TestScan.cpp └── TestSortFuser.cxx └── tpl └── versions.txt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/custom-jobs-and-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/.gitlab/custom-jobs-and-variables.yml -------------------------------------------------------------------------------- /.gitlab/jobs/corona.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/.gitlab/jobs/corona.yml -------------------------------------------------------------------------------- /.gitlab/jobs/dane.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/.gitlab/jobs/dane.yml -------------------------------------------------------------------------------- /.gitlab/jobs/matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/.gitlab/jobs/matrix.yml -------------------------------------------------------------------------------- /.gitlab/jobs/tioga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/.gitlab/jobs/tioga.yml -------------------------------------------------------------------------------- /.gitlab/jobs/tuolumne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/.gitlab/jobs/tuolumne.yml -------------------------------------------------------------------------------- /.gitlab/subscribed-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/.gitlab/subscribed-pipelines.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/.gitmodules -------------------------------------------------------------------------------- /.uberenv_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/.uberenv_config.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /benchmarks/BenchmarkArrayView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/benchmarks/BenchmarkArrayView.cpp -------------------------------------------------------------------------------- /benchmarks/BenchmarkForall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/benchmarks/BenchmarkForall.cpp -------------------------------------------------------------------------------- /benchmarks/BenchmarkHostDeviceMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/benchmarks/BenchmarkHostDeviceMap.cpp -------------------------------------------------------------------------------- /benchmarks/BenchmarkNumeric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/benchmarks/BenchmarkNumeric.cpp -------------------------------------------------------------------------------- /benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/Setup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/cmake/Setup.cmake -------------------------------------------------------------------------------- /cmake/SetupBLTWrapper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/cmake/SetupBLTWrapper.cmake -------------------------------------------------------------------------------- /cmake/SetupCompilerOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/cmake/SetupCompilerOptions.cmake -------------------------------------------------------------------------------- /cmake/SetupDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/cmake/SetupDependencies.cmake -------------------------------------------------------------------------------- /cmake/SetupMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/cmake/SetupMacros.cmake -------------------------------------------------------------------------------- /cmake/SetupOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/cmake/SetupOptions.cmake -------------------------------------------------------------------------------- /cmake/care-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/cmake/care-config.cmake.in -------------------------------------------------------------------------------- /cmake/modules/FindCUB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/cmake/modules/FindCUB.cmake -------------------------------------------------------------------------------- /debug/gdb/care-gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/debug/gdb/care-gdb.py -------------------------------------------------------------------------------- /debug/msvs/NatvisFile.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/debug/msvs/NatvisFile.natvis -------------------------------------------------------------------------------- /debug/totalview/host_device_ptr.tvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/debug/totalview/host_device_ptr.tvd -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/doxygen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/docs/doxygen/CMakeLists.txt -------------------------------------------------------------------------------- /docs/doxygen/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/docs/doxygen/Doxyfile.in -------------------------------------------------------------------------------- /docs/sphinx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/docs/sphinx/CMakeLists.txt -------------------------------------------------------------------------------- /docs/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/docs/sphinx/conf.py -------------------------------------------------------------------------------- /docs/sphinx/data_structures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/docs/sphinx/data_structures.rst -------------------------------------------------------------------------------- /docs/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/docs/sphinx/index.rst -------------------------------------------------------------------------------- /docs/sphinx/infrastructure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/docs/sphinx/infrastructure.rst -------------------------------------------------------------------------------- /docs/sphinx/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/docs/sphinx/install.rst -------------------------------------------------------------------------------- /docs/sphinx/loop_fuser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/docs/sphinx/loop_fuser.rst -------------------------------------------------------------------------------- /docs/sphinx/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/docs/sphinx/tutorial.rst -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/DeviceASAN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/examples/DeviceASAN.cpp -------------------------------------------------------------------------------- /examples/RaceConditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/examples/RaceConditions.cpp -------------------------------------------------------------------------------- /examples/ScanLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/examples/ScanLoop.cpp -------------------------------------------------------------------------------- /examples/StreamLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/examples/StreamLoop.cpp -------------------------------------------------------------------------------- /host-configs/lc/toss_4_x86_64_ib/clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/host-configs/lc/toss_4_x86_64_ib/clang.cmake -------------------------------------------------------------------------------- /host-configs/lc/toss_4_x86_64_ib/clang_tsan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/host-configs/lc/toss_4_x86_64_ib/clang_tsan.cmake -------------------------------------------------------------------------------- /host-configs/lc/toss_4_x86_64_ib/intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/host-configs/lc/toss_4_x86_64_ib/intel.cmake -------------------------------------------------------------------------------- /host-configs/lc/toss_4_x86_64_ib/nvcc_clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/host-configs/lc/toss_4_x86_64_ib/nvcc_clang.cmake -------------------------------------------------------------------------------- /host-configs/lc/toss_4_x86_64_ib_cray/amdclang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/host-configs/lc/toss_4_x86_64_ib_cray/amdclang.cmake -------------------------------------------------------------------------------- /reproducers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/reproducers/CMakeLists.txt -------------------------------------------------------------------------------- /reproducers/ReproducerManagedPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/reproducers/ReproducerManagedPtr.cpp -------------------------------------------------------------------------------- /scripts/check-license-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/scripts/check-license-info.sh -------------------------------------------------------------------------------- /scripts/gitlab/build_and_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/scripts/gitlab/build_and_test.sh -------------------------------------------------------------------------------- /scripts/make_release_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/scripts/make_release_tarball.sh -------------------------------------------------------------------------------- /scripts/spack_packages/spack_repo/llnl_care/packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/scripts/spack_packages/spack_repo/llnl_care/packages/README.md -------------------------------------------------------------------------------- /scripts/spack_packages/spack_repo/llnl_care/repo.yaml: -------------------------------------------------------------------------------- 1 | repo: 2 | namespace: 'llnl_care' 3 | api: v2.0 4 | -------------------------------------------------------------------------------- /scripts/update-copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/scripts/update-copyright.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/care/ArrayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/ArrayView.h -------------------------------------------------------------------------------- /src/care/CHAICallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/CHAICallback.cpp -------------------------------------------------------------------------------- /src/care/CHAICallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/CHAICallback.h -------------------------------------------------------------------------------- /src/care/CHAIDataGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/CHAIDataGetter.h -------------------------------------------------------------------------------- /src/care/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/CMakeLists.txt -------------------------------------------------------------------------------- /src/care/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/Debug.h -------------------------------------------------------------------------------- /src/care/DebugPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/DebugPlugin.cpp -------------------------------------------------------------------------------- /src/care/DebugPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/DebugPlugin.h -------------------------------------------------------------------------------- /src/care/DefaultMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/DefaultMacros.h -------------------------------------------------------------------------------- /src/care/ExecutionSpace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/ExecutionSpace.cpp -------------------------------------------------------------------------------- /src/care/ExecutionSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/ExecutionSpace.h -------------------------------------------------------------------------------- /src/care/FOREACHMACRO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/FOREACHMACRO.h -------------------------------------------------------------------------------- /src/care/GPUMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/GPUMacros.h -------------------------------------------------------------------------------- /src/care/GPUWatchpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/GPUWatchpoint.h -------------------------------------------------------------------------------- /src/care/KeyValueSorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/KeyValueSorter.h -------------------------------------------------------------------------------- /src/care/KeyValueSorter_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/KeyValueSorter_decl.h -------------------------------------------------------------------------------- /src/care/KeyValueSorter_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/KeyValueSorter_impl.h -------------------------------------------------------------------------------- /src/care/KeyValueSorter_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/KeyValueSorter_inst.h -------------------------------------------------------------------------------- /src/care/LoopFuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/LoopFuser.cpp -------------------------------------------------------------------------------- /src/care/LoopFuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/LoopFuser.h -------------------------------------------------------------------------------- /src/care/PluginData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/PluginData.cpp -------------------------------------------------------------------------------- /src/care/PluginData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/PluginData.h -------------------------------------------------------------------------------- /src/care/PointerTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/PointerTypes.h -------------------------------------------------------------------------------- /src/care/ProfilePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/ProfilePlugin.cpp -------------------------------------------------------------------------------- /src/care/ProfilePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/ProfilePlugin.h -------------------------------------------------------------------------------- /src/care/Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/Setup.h -------------------------------------------------------------------------------- /src/care/SortFuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/SortFuser.h -------------------------------------------------------------------------------- /src/care/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/algorithm.h -------------------------------------------------------------------------------- /src/care/algorithm_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/algorithm_decl.h -------------------------------------------------------------------------------- /src/care/algorithm_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/algorithm_impl.h -------------------------------------------------------------------------------- /src/care/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/array.h -------------------------------------------------------------------------------- /src/care/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/atomic.h -------------------------------------------------------------------------------- /src/care/care.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/care.cpp -------------------------------------------------------------------------------- /src/care/care.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/care.h -------------------------------------------------------------------------------- /src/care/care_inst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/care_inst.cpp -------------------------------------------------------------------------------- /src/care/care_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/care_inst.h -------------------------------------------------------------------------------- /src/care/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/config.h.in -------------------------------------------------------------------------------- /src/care/detail/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/detail/test_utils.h -------------------------------------------------------------------------------- /src/care/device_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/device_ptr.h -------------------------------------------------------------------------------- /src/care/forall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/forall.h -------------------------------------------------------------------------------- /src/care/host_device_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/host_device_map.h -------------------------------------------------------------------------------- /src/care/host_device_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/host_device_ptr.h -------------------------------------------------------------------------------- /src/care/host_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/host_ptr.h -------------------------------------------------------------------------------- /src/care/local_host_device_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/local_host_device_ptr.h -------------------------------------------------------------------------------- /src/care/local_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/local_ptr.h -------------------------------------------------------------------------------- /src/care/managed_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/managed_ptr.h -------------------------------------------------------------------------------- /src/care/numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/numeric.h -------------------------------------------------------------------------------- /src/care/openmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/openmp.h -------------------------------------------------------------------------------- /src/care/policies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/policies.h -------------------------------------------------------------------------------- /src/care/scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/scan.cpp -------------------------------------------------------------------------------- /src/care/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/scan.h -------------------------------------------------------------------------------- /src/care/scan_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/scan_impl.h -------------------------------------------------------------------------------- /src/care/single_access_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/single_access_ptr.h -------------------------------------------------------------------------------- /src/care/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/src/care/util.h -------------------------------------------------------------------------------- /test/Benchmarks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/test/Benchmarks.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/TestAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/test/TestAlgorithm.cpp -------------------------------------------------------------------------------- /test/TestArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/test/TestArray.cpp -------------------------------------------------------------------------------- /test/TestForall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/test/TestForall.cpp -------------------------------------------------------------------------------- /test/TestKeyValueSorter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/test/TestKeyValueSorter.cpp -------------------------------------------------------------------------------- /test/TestLoopFuser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/test/TestLoopFuser.cxx -------------------------------------------------------------------------------- /test/TestManagedPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/test/TestManagedPtr.cpp -------------------------------------------------------------------------------- /test/TestNestedMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/test/TestNestedMA.cpp -------------------------------------------------------------------------------- /test/TestNumeric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/test/TestNumeric.cpp -------------------------------------------------------------------------------- /test/TestScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/test/TestScan.cpp -------------------------------------------------------------------------------- /test/TestSortFuser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/test/TestSortFuser.cxx -------------------------------------------------------------------------------- /tpl/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/CARE/HEAD/tpl/versions.txt --------------------------------------------------------------------------------