Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"build": {
"dockerfile": "Dockerfile",
"args": {
"GEOS_TPL_TAG": "332-908"
"GEOS_TPL_TAG": "336-915"
Comment thread
castelletto1 marked this conversation as resolved.
Outdated
}
},
"runArgs": [
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,9 +303,12 @@ jobs:
ENABLE_HYPRE: ON
ENABLE_TRILINOS: OFF
GCP_BUCKET: geosx/ubuntu22.04-gcc11
RUNS_ON: Runner_4core_16GB
RUNS_ON: streak2
REQUIRED_LABEL: "ci: run code coverage"
HOST_CONFIG: /spack-generated.cmake
NPROC: 8
DOCKER_RUN_ARGS: "--cpus=8 --memory=256g --runtime=nvidia -v /etc/pki/tls/certs/ca-bundle.crt:/etc/pki/tls/certs/ca-bundle.crt:ro -v /etc/pki/tls/certs/ca-bundle.crt:/certs/ca-bundle.crt:ro"


# mac_builds:
# needs:
Expand Down Expand Up @@ -365,9 +368,9 @@ jobs:
ENABLE_TRILINOS: OFF
GEOS_ENABLE_BOUNDS_CHECK: OFF
DOCKER_REPOSITORY: geosx/rockylinux8-clang17-cuda12.9.1
RUNS_ON: streak
NPROC: 16
DOCKER_RUN_ARGS: "--cpus=16 --memory=448g --runtime=nvidia -e NVIDIA_VISIBLE_DEVICES=all -v /etc/pki/tls/certs/ca-bundle.crt:/etc/pki/tls/certs/ca-bundle.crt:ro -v /etc/pki/tls/certs/ca-bundle.crt:/certs/ca-bundle.crt:ro"
RUNS_ON: streak2
NPROC: 8
DOCKER_RUN_ARGS: "--cpus=8 --memory=128g --runtime=nvidia -e NVIDIA_VISIBLE_DEVICES=all -v /etc/pki/tls/certs/ca-bundle.crt:/etc/pki/tls/certs/ca-bundle.crt:ro -v /etc/pki/tls/certs/ca-bundle.crt:/certs/ca-bundle.crt:ro"
HOST_CONFIG: /spack-generated.cmake

- name: Rockylinux CUDA (8, gcc 13.3, cuda 12.9.1)
Expand Down
8 changes: 4 additions & 4 deletions host-configs/environment.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ if(ENABLE_CUDA)
set(CUDA_TOOLKIT_ROOT_DIR "/usr/local/cuda" CACHE PATH "" FORCE)
endif()

set(CUDA_ARCH "$ENV{CUDA_ARCH}" CACHE STRING "" FORCE)
if(NOT CUDA_ARCH)
set(CUDA_ARCH "sm_70" CACHE STRING "" FORCE)
endif()
# set(CUDA_ARCH "$ENV{CUDA_ARCH}" CACHE STRING "" FORCE)
# if(NOT CUDA_ARCH)
set(CUDA_ARCH "sm_86" CACHE STRING "" FORCE)
# endif()

if(ENABLE_HYPRE)
set(ENABLE_HYPRE_DEVICE CUDA CACHE STRING "" FORCE)
Expand Down
Loading