Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into add-conda-packages
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Jan 5, 2024
2 parents e7a4ccf + ce20b81 commit 8da5db6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,17 @@ work-in-progress.
TODO

## Install pynvjitlink

Install with either:

```
python setup.py develop
```shell
python -m pip install -e .
```

or

```
python setup.py install
```shell
python -m pip install .
```

### Conda
Expand Down
6 changes: 2 additions & 4 deletions ci/build_wheel.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
#!/bin/bash
# Copyright (c) 2023, NVIDIA CORPORATION
# Copyright (c) 2023-2024, NVIDIA CORPORATION

set -euo pipefail

rapids-logger "Install CUDA Toolkit"
source "$(dirname "$0")/install_latest_cuda_toolkit.sh"

rapids-logger "Check conda environment"
conda list

rapids-logger "Build wheel"
mkdir -p ./wheel-build
pip wheel . --wheel-dir=./wheel-build -vvv
Expand Down
2 changes: 1 addition & 1 deletion ci/install_latest_cuda_toolkit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Installs the latest CUDA Toolkit.
# Supports CentOS 7 and Rocky Linux 8.

yum update
yum update -y
yum install -y epel-release

OS_ID=$(. /etc/os-release; echo $ID)
Expand Down
4 changes: 2 additions & 2 deletions ci/test_wheel.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# Copyright (c) 2023, NVIDIA CORPORATION
# Copyright (c) 2023-2024, NVIDIA CORPORATION

set -e
set -euo pipefail

rapids-logger "Download Wheel"
RAPIDS_PY_WHEEL_NAME="pynvjitlink-cu12" rapids-download-wheels-from-s3 ./wheel-build/
Expand Down

0 comments on commit 8da5db6

Please sign in to comment.