- Add support for legacy CUDA versions; now compatible with CUDA 12.3 and newer - Add support for NVRTC compilation - Other fixes and code refactoring
13 lines
290 B
Bash
Executable File
13 lines
290 B
Bash
Executable File
# Change current directory into project root
|
|
original_dir=$(pwd)
|
|
script_dir=$(realpath "$(dirname "$0")")
|
|
cd "$script_dir"
|
|
|
|
# Remove old dist file, build files, and install
|
|
rm -rf build dist
|
|
rm -rf *.egg-info
|
|
python setup.py bdist_wheel
|
|
|
|
# Open users' original directory
|
|
cd "$original_dir"
|