Skip to content

Commit c1045ee

Browse files
xuzhao9facebook-github-bot
authored andcommittedNov 6, 2024
Fix the docker build (#39)
Summary: Need to fix the docker build script as we renamed utils to tools directory. Pull Request resolved: #39 Reviewed By: FindHao Differential Revision: D65502921 Pulled By: xuzhao9 fbshipit-source-id: d8bdb97d6e3db7b7ac0e96c51b4f8a3018ef07cc
1 parent 789dd31 commit c1045ee

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed
 

‎docker/tritonbench-nightly.dockerfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ RUN git clone --recurse-submodules -b "${TRITONBENCH_BRANCH}" --single-branch \
1616
# Setup conda env and CUDA
1717
RUN cd /workspace/tritonbench && \
1818
. ${SETUP_SCRIPT} && \
19-
python ./utils/python_utils.py --create-conda-env ${CONDA_ENV} && \
19+
python tools/python_utils.py --create-conda-env ${CONDA_ENV} && \
2020
echo "if [ -z \${CONDA_ENV} ]; then export CONDA_ENV=${CONDA_ENV}; fi" >> /workspace/setup_instance.sh && \
2121
echo "conda activate \${CONDA_ENV}" >> /workspace/setup_instance.sh
2222

2323
RUN cd /workspace/tritonbench && \
2424
. ${SETUP_SCRIPT} && \
25-
sudo python ./utils/cuda_utils.py --setup-cuda-softlink
25+
sudo python tools/cuda_utils.py --setup-cuda-softlink
2626

2727
# Install PyTorch nightly and verify the date is correct
2828
RUN cd /workspace/tritonbench && \
2929
. ${SETUP_SCRIPT} && \
30-
python utils/cuda_utils.py --install-torch-deps && \
31-
python utils/cuda_utils.py --install-torch-nightly
30+
python tools/cuda_utils.py --install-torch-deps && \
31+
python tools/cuda_utils.py --install-torch-nightly
3232

3333
# Check the installed version of nightly if needed
3434
RUN cd /workspace/tritonbench && \
@@ -37,9 +37,9 @@ RUN cd /workspace/tritonbench && \
3737
echo "torch version check skipped"; \
3838
elif [ -z "${FORCE_DATE}" ]; then \
3939
FORCE_DATE=$(date '+%Y%m%d') \
40-
python utils/cuda_utils.py --check-torch-nightly-version --force-date "${FORCE_DATE}"; \
40+
python tools/cuda_utils.py --check-torch-nightly-version --force-date "${FORCE_DATE}"; \
4141
else \
42-
python utils/cuda_utils.py --check-torch-nightly-version --force-date "${FORCE_DATE}"; \
42+
python tools/cuda_utils.py --check-torch-nightly-version --force-date "${FORCE_DATE}"; \
4343
fi
4444

4545
# Tritonbench library build and test require libcuda.so.1

‎install.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_fbgemm():
5353

5454

5555
def install_cutlass():
56-
from utils.cutlass_kernels.install import install_colfax_cutlass
56+
from tools.cutlass_kernels.install import install_colfax_cutlass
5757

5858
install_colfax_cutlass()
5959

@@ -84,7 +84,7 @@ def install_liger():
8484

8585

8686
def install_tk():
87-
from utils.tk.install import install_tk
87+
from tools.tk.install import install_tk
8888

8989
install_tk()
9090

‎tools/cutlass_kernels/install.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
FBGEMM_PATH = REPO_PATH.joinpath("submodules", "FBGEMM", "fbgemm_gpu")
1212
FBGEMM_CUTLASS_PATH = FBGEMM_PATH.parent.joinpath("external", "cutlass")
1313
COLFAX_CUTLASS_PATH = REPO_PATH.joinpath("submodules", "cutlass-kernels")
14-
COLFAX_CUTLASS_TRITONBENCH_PATH = REPO_PATH.joinpath("utils", "cutlass_kernels")
14+
COLFAX_CUTLASS_TRITONBENCH_PATH = REPO_PATH.joinpath("tools", "cutlass_kernels")
1515

1616
TORCH_BASE_PATH = Path(torch.__file__).parent
1717

‎tools/tk/install.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
REPO_PATH = Path(os.path.abspath(__file__)).parent.parent.parent
1212
TK_PATH = REPO_PATH.joinpath("submodules", "ThunderKittens")
1313
TK_PYUTILS_PATH = TK_PATH.joinpath("src", "common", "pyutils")
14-
TRITONBENCH_TK_PATH = REPO_PATH.joinpath("utils", "tk")
14+
TRITONBENCH_TK_PATH = REPO_PATH.joinpath("tools", "tk")
1515
TORCH_BASE_PATH = Path(torch.__file__).parent
1616
CONDA_PREFIX = os.environ.get("CONDA_PREFIX", None)
1717
PYTHON_VERSION = f"python{sys.version_info[0]}.{sys.version_info[1]}"

0 commit comments

Comments
 (0)
Please sign in to comment.