Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add gcc-11 option when creating a compose env. #61

Merged
merged 1 commit into from
Feb 25, 2022
Merged
Changes from all 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 scripts/02-create-compose-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Would you like me to reuse your existing config? (y/n)" "YES")
echo ""
fi

GCC_VERSION=${GCC_VERSION:-$(select_version "Please enter your desired GCC version (9/10)" "9")}
GCC_VERSION=${GCC_VERSION:-$(select_version "Please enter your desired GCC version (9/10/11)" "9")}
CUDA_VERSION=${CUDA_VERSION:-$(select_version "Please enter your desired CUDA version (11.5.0)" "$CURRENT_CUDA_VERSION")}
PYTHON_VERSION=${PYTHON_VERSION:-$(select_version "Please enter your desired Python version (3.8/3.9)" "3.8")}
CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE:-$(select_version "Select RAPIDS CMake project built type (Debug/Release)" "Release")}
Expand Down