Skip to content

Commit 205f5f6

Browse files
committed
Revert package changes
1 parent 1ec0c6e commit 205f5f6

File tree

5 files changed

+8
-20
lines changed

5 files changed

+8
-20
lines changed

ci/jenkinsfile.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
1919

2020
run_cpu = "bash ci/bash.sh mlcaidev/ci-cpu:4d61e5d -e GPU cpu -e MLC_CI_SETUP_DEPS 1"
21-
run_cuda = "bash ci/bash.sh mlcaidev/ci-cu128:4d61e5d -e GPU cuda-12.8 -e MLC_CI_SETUP_DEPS 1"
22-
run_rocm = "bash ci/bash.sh mlcaidev/ci-rocm63:4d61e5d -e GPU rocm-6.3 -e MLC_CI_SETUP_DEPS 1"
21+
run_cuda = "bash ci/bash.sh mlcaidev/ci-cu121:4d61e5d -e GPU cuda-12.1 -e MLC_CI_SETUP_DEPS 1"
22+
run_rocm = "bash ci/bash.sh mlcaidev/ci-rocm57:4d61e5d -e GPU rocm-5.7 -e MLC_CI_SETUP_DEPS 1"
2323

2424
pkg_cpu = "bash ci/bash.sh mlcaidev/package-rocm61:5b6f876 -e GPU cpu -e MLC_CI_SETUP_DEPS 1"
2525
pkg_cuda = "bash ci/bash.sh mlcaidev/package-cu128:5b6f876 -e GPU cuda-12.8 -e MLC_CI_SETUP_DEPS 1"

ci/task/test_model_compile.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ pip install --force-reinstall wheels/*.whl
99

1010
if [[ ${GPU} == cuda* ]]; then
1111
TARGET=cuda
12-
pip install --pre -U --no-index -f https://mlc.ai/wheels mlc-ai-nightly-cu128
12+
pip install --pre -U --no-index -f https://mlc.ai/wheels mlc-ai-nightly-cu123
1313
export LD_LIBRARY_PATH=/usr/local/cuda/compat/:$LD_LIBRARY_PATH
1414
elif [[ ${GPU} == rocm* ]]; then
1515
TARGET=rocm
16-
pip install --pre -U --no-index -f https://mlc.ai/wheels mlc-ai-nightly-rocm63
16+
pip install --pre -U --no-index -f https://mlc.ai/wheels mlc-ai-nightly-rocm57
1717
elif [[ ${GPU} == metal ]]; then
1818
TARGET=metal
1919
pip install --pre -U --force-reinstall -f https://mlc.ai/wheels mlc-ai-nightly-cpu

ci/task/test_unittest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if [[ -n ${MLC_CI_SETUP_DEPS:-} ]]; then
88
# Install dependency
99
pip install --force-reinstall wheels/*.whl
1010
pip install --quiet pytest
11-
pip install --pre -U --no-index -f https://mlc.ai/wheels mlc-ai-nightly-cu128
11+
pip install --pre -U --no-index -f https://mlc.ai/wheels mlc-ai-nightly-cu123
1212
export LD_LIBRARY_PATH=/usr/local/cuda/compat/:$LD_LIBRARY_PATH
1313
fi
1414

cmake/gen_cmake_config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@
8888
cmake_config_str += f"set(CMAKE_CUDA_ARCHITECTURES {user_input})\n"
8989
break
9090
else:
91-
print(f"Invalid input: {user_input}. FlashInfer requires 80, 86, 89, 90, 100 or 120")
91+
print(
92+
f"Invalid input: {user_input}. FlashInfer requires 80, 86, 89, 90, 100 or 120"
93+
)
9294

9395
print("\nWriting the following configuration to config.cmake...")
9496
print(cmake_config_str)

docs/install/tvm.rst

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,6 @@ A nightly prebuilt Python package of Apache TVM Unity is provided.
5353
conda activate your-environment
5454
python -m pip install --pre -U -f https://mlc.ai/wheels mlc-ai-nightly-cu123
5555
56-
.. tab:: CUDA 12.8
57-
58-
.. code-block:: bash
59-
60-
conda activate your-environment
61-
python -m pip install --pre -U -f https://mlc.ai/wheels mlc-ai-nightly-cu128
62-
6356
.. tab:: ROCm 6.1
6457

6558
.. code-block:: bash
@@ -74,13 +67,6 @@ A nightly prebuilt Python package of Apache TVM Unity is provided.
7467
conda activate your-environment
7568
python -m pip install --pre -U -f https://mlc.ai/wheels mlc-ai-nightly-rocm62
7669
77-
.. tab:: ROCm 6.3
78-
79-
.. code-block:: bash
80-
81-
conda activate your-environment
82-
python -m pip install --pre -U -f https://mlc.ai/wheels mlc-ai-nightly-rocm63
83-
8470
.. tab:: Vulkan
8571

8672
Supported in all Linux packages.

0 commit comments

Comments
 (0)