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

Updating to driver 525 #755

Merged
merged 7 commits into from
Mar 15, 2023
Merged
Show file tree
Hide file tree
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 .github/workflows/ci_pipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
test:
name: Test
needs: [build]
runs-on: [self-hosted, linux, amd64, gpu-v100-520-1]
runs-on: [self-hosted, linux, amd64, gpu-v100-525-1]
timeout-minutes: 60
container:
credentials:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uses: ./.github/workflows/ci_pipe.yml
with:
run_check: ${{ startsWith(github.ref_name, 'pull-request/') }}
container: nvcr.io/ea-nvidia-morpheus/morpheus:morpheus-ci-driver-230214
test_container: nvcr.io/ea-nvidia-morpheus/morpheus:morpheus-ci-test-230214
container: nvcr.io/ea-nvidia-morpheus/morpheus:morpheus-ci-driver-230315
test_container: nvcr.io/ea-nvidia-morpheus/morpheus:morpheus-ci-test-230315
secrets:
NGC_API_KEY: ${{ secrets.NGC_API_KEY }}
4 changes: 2 additions & 2 deletions ci/runner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

# Args used in FROM commands must come first
ARG FROM_IMAGE="rapidsai/ci"
ARG CUDA_PKG_VER=11-5
ARG CUDA_PKG_VER=11-8
ARG CUDA_SHORT_VER=11.8
ARG CUDA_VER=11.8.0
ARG LINUX_DISTRO=ubuntu
Expand Down Expand Up @@ -63,7 +63,7 @@ RUN apt update && \
libcufft-dev-${CUDA_PKG_VER} \
libcurand-dev-${CUDA_PKG_VER} \
libcusolver-dev-${CUDA_PKG_VER} \
libnvidia-compute-520 && \
libnvidia-compute-525 && \
apt clean && \
rm -rf /var/lib/apt/lists/*

Expand Down
4 changes: 2 additions & 2 deletions ci/scripts/github/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ update_conda_env

rapids-logger "Check versions"
python3 --version
gcc --version
g++ --version
x86_64-conda-linux-gnu-cc --version
x86_64-conda-linux-gnu-c++ --version
cmake --version
ninja --version
sccache --version
Expand Down
8 changes: 4 additions & 4 deletions docs/source/developer_guide/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ All of the following instructions assume several variables have been set:
- `MORPHEUS_ROOT`: The Morpheus repository has been checked out at a location specified by this variable. Any non-absolute paths are relative to `MORPHEUS_ROOT`.
- `PYTHON_VER`: The desired Python version. Minimum required is `3.8`
- `RAPIDS_VER`: The desired RAPIDS version for all RAPIDS libraries including cuDF and RMM. This is also used for Triton. If in doubt use `22.10`
- `CUDA_VER`: The desired CUDA version to use. If in doubt use `11.5`
- `CUDA_VER`: The desired CUDA version to use. If in doubt use `11.8`


### Clone the repository and pull large file data from Git LFS

```bash
export PYTHON_VER=3.8
export RAPIDS_VER=22.10
export CUDA_VER=11.5
export CUDA_VER=11.8
export MORPHEUS_ROOT=$(pwd)/morpheus
git clone https://github.com/nv-morpheus/Morpheus.git $MORPHEUS_ROOT
cd $MORPHEUS_ROOT
Expand Down Expand Up @@ -173,7 +173,7 @@ Note: These instructions assume the user is using `mamba` instead of `conda` sin

- Pascal architecture GPU or better
- NVIDIA driver `450.80.02` or higher
- [CUDA 11.5](https://developer.nvidia.com/cuda-11-5-2-download-archive)
- [CUDA 11.8](https://developer.nvidia.com/cuda-11-8-0-download-archive)
- `conda` and `mamba`
- See the [Getting Started Guide](https://conda.io/projects/conda/en/latest/user-guide/install/index.html) if `conda` is not already installed
- Install `mamba`:
Expand All @@ -189,7 +189,7 @@ Note: These instructions assume the user is using `mamba` instead of `conda` sin
```bash
export PYTHON_VER=3.8
export RAPIDS_VER=22.10
export CUDA_VER=11.5
export CUDA_VER=11.8
export MORPHEUS_ROOT=$(pwd)/morpheus
git clone https://github.com/nv-morpheus/Morpheus.git $MORPHEUS_ROOT
cd $MORPHEUS_ROOT
Expand Down