Skip to content

Commit

Permalink
Merge pull request #74 from NCAR/version_update
Browse files Browse the repository at this point in the history
Version update
  • Loading branch information
K20shores authored Mar 21, 2024
2 parents 82cf0aa + 2882318 commit 2daf2d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cff-version: 1.2.0
message: "This Citation File Format (CFF) record describes a software paper."
message: "This Citation File Format (CFF) record describes how to cite MUSICA software."
authors:
- family-names: Pfister
given-names: Gabriele G.
Expand Down Expand Up @@ -64,3 +64,4 @@ number: 10
page: "E1743 - E1760"
doi: "10.1175/BAMS-D-19-0331.1"
url: "https://journals.ametsoc.org/view/journals/bams/101/10/bamsD190331.xml"
version: 0.6.0
2 changes: 1 addition & 1 deletion lib/micm
Submodule micm updated 53 files
+1 −1 .devcontainer/devcontainer.json
+6 −2 .github/workflows/docker_and_coverage.yml
+2 −11 .github/workflows/windows.yml
+30 −0 CITATION.cff
+22 −24 CMakeLists.txt
+1 −1 cmake/StaticAnalyzers.cmake
+8 −8 cmake/dependencies.cmake
+4 −4 cmake/test_util.cmake
+1 −1 docker/Dockerfile
+5 −5 docker/Dockerfile.coverage
+1 −1 docker/Dockerfile.docs
+0 −1 docker/Dockerfile.intel
+3 −3 docker/Dockerfile.llvm
+2 −2 docker/Dockerfile.memcheck
+2 −2 docker/Dockerfile.mpi
+7 −12 docker/Dockerfile.nvhpc
+3 −3 docker/Dockerfile.openmp
+2 −2 docker/Dockerfile.publish
+3 −3 docs/source/contributing/index.rst
+3 −3 docs/source/getting_started.rst
+1 −1 docs/source/user_guide/index.rst
+16 −3 include/micm/process/cuda_process_set.cuh
+51 −23 include/micm/process/cuda_process_set.hpp
+1 −1 include/micm/process/jit_process_set.hpp
+14 −4 include/micm/solver/cuda_linear_solver.cuh
+45 −14 include/micm/solver/cuda_linear_solver.hpp
+1 −1 include/micm/solver/jit_lu_decomposition.hpp
+2 −2 include/micm/solver/jit_rosenbrock.hpp
+5 −0 include/micm/solver/rosenbrock.inl
+42 −50 include/micm/util/cuda_param.hpp
+37 −0 include/micm/util/cuda_vector_matrix.cuh
+169 −0 include/micm/util/cuda_vector_matrix.hpp
+2 −2 include/micm/util/sparse_matrix_vector_ordering.hpp
+5 −3 include/micm/util/vector_matrix.hpp
+1 −1 packaging/CMakeLists.txt
+37 −21 src/CMakeLists.txt
+2 −2 src/process/CMakeLists.txt
+145 −162 src/process/process_set.cu
+1 −1 src/solver/CMakeLists.txt
+84 −95 src/solver/linear_solver.cu
+6 −0 src/util/CMakeLists.txt
+37 −0 src/util/cuda_vector_matrix.cu
+1 −1 test/integration/CMakeLists.txt
+1 −1 test/regression/RosenbrockChapman/CMakeLists.txt
+3 −3 test/tutorial/CMakeLists.txt
+3 −3 test/unit/CMakeLists.txt
+1 −1 test/unit/openmp/CMakeLists.txt
+3 −3 test/unit/process/CMakeLists.txt
+2 −2 test/unit/solver/CMakeLists.txt
+9 −0 test/unit/util/CMakeLists.txt
+21 −0 test/unit/util/cuda_matrix_utils.cu
+9 −0 test/unit/util/cuda_matrix_utils.cuh
+471 −0 test/unit/util/test_cuda_vector_matrix.cpp

0 comments on commit 2daf2d2

Please sign in to comment.