diff --git a/.devcontainer/CPU/Dockerfile b/.devcontainer/CPU/Dockerfile index 839fa01..6af5c95 100644 --- a/.devcontainer/CPU/Dockerfile +++ b/.devcontainer/CPU/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:focal-20220531 +FROM ubuntu:focal-20250404 RUN apt-get update -y RUN apt-get -y install gdb diff --git a/Algorithm/CMakeLists.txt b/Algorithm/CMakeLists.txt index 861bd97..fe6acf8 100644 --- a/Algorithm/CMakeLists.txt +++ b/Algorithm/CMakeLists.txt @@ -7,14 +7,14 @@ include(FetchContent) FetchContent_Declare( spdlog GIT_REPOSITORY https://github.com/gabime/spdlog.git - GIT_TAG v1.13.0 + GIT_TAG v1.17.0 ) FetchContent_MakeAvailable(spdlog) FetchContent_Declare( toml11 GIT_REPOSITORY https://github.com/ToruNiina/toml11 - GIT_TAG v3.7.0 + GIT_TAG v3.8.1 ) FetchContent_MakeAvailable(toml11) diff --git a/CMakeLists.txt b/CMakeLists.txt index b89b0c5..5499a34 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ include(FetchContent) FetchContent_Declare( spdlog GIT_REPOSITORY https://github.com/gabime/spdlog.git - GIT_TAG v1.13.0 + GIT_TAG v1.17.0 ) FetchContent_MakeAvailable(spdlog) diff --git a/CUDAKernel/src/CosmicConstants.cu b/CUDAKernel/src/CosmicConstants.cu index 54a4ecf..c776379 100644 --- a/CUDAKernel/src/CosmicConstants.cu +++ b/CUDAKernel/src/CosmicConstants.cu @@ -40,6 +40,7 @@ __device__ __constant__ float rh = 0.0046367333333333f; __device__ __constant__ float rInit = 1.0f; __device__ __constant__ bool useUniformInjection = true; + void setConstants(ParamsCarrier *singleTone) { if (singleTone->getString("model", "1D Fp").compare("2D SolarProp-like") == 0) diff --git a/CpuImplementations/CMakeLists.txt b/CpuImplementations/CMakeLists.txt index c4402fa..d9d1ee0 100644 --- a/CpuImplementations/CMakeLists.txt +++ b/CpuImplementations/CMakeLists.txt @@ -7,7 +7,7 @@ include(FetchContent) FetchContent_Declare( spdlog GIT_REPOSITORY https://github.com/gabime/spdlog.git - GIT_TAG v1.13.0 + GIT_TAG v1.17.0 ) FetchContent_MakeAvailable(spdlog) diff --git a/Dockerfile b/Dockerfile index 5886a86..f5b4be6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM nvidia/cuda:11.6.1-devel-ubuntu20.04 +FROM nvidia/cuda:11.8.0-devel-ubuntu20.04 RUN rm /etc/apt/sources.list.d/cuda.list RUN rm -vf /var/lib/apt/lists/* diff --git a/Dockerfile.CPU b/Dockerfile.CPU index a91c09a..ab4cb39 100644 --- a/Dockerfile.CPU +++ b/Dockerfile.CPU @@ -1,4 +1,4 @@ -FROM ubuntu:focal-20220531 +FROM ubuntu:focal-20250404 RUN apt-get update -y RUN apt-get -y install git diff --git a/Input/CMakeLists.txt b/Input/CMakeLists.txt index af8c07e..6306676 100644 --- a/Input/CMakeLists.txt +++ b/Input/CMakeLists.txt @@ -14,28 +14,28 @@ include(FetchContent) FetchContent_Declare( rapidcsv GIT_REPOSITORY https://github.com/d99kris/rapidcsv - GIT_TAG v8.82 + GIT_TAG v8.90 ) FetchContent_MakeAvailable(rapidcsv) FetchContent_Declare( spdlog GIT_REPOSITORY https://github.com/gabime/spdlog.git - GIT_TAG v1.13.0 + GIT_TAG v1.17.0 ) FetchContent_MakeAvailable(spdlog) FetchContent_Declare( toml11 GIT_REPOSITORY https://github.com/ToruNiina/toml11 - GIT_TAG v3.7.0 + GIT_TAG v3.8.1 ) FetchContent_MakeAvailable(toml11) FetchContent_Declare( CLI11 GIT_REPOSITORY https://github.com/CLIUtils/CLI11 - GIT_TAG v1.3.0 + GIT_TAG v1.9.1 ) FetchContent_MakeAvailable(CLI11)