rebuild_aiter.sh 1.34 KB
Newer Older
Xiaowei.zhang's avatar
Xiaowei.zhang committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash

echo "### make sure 3rdparty already there."
# git submodule update --init
# git pull --recurse-submodules

echo "### remove old files..."
rm -rf aiter/jit/aiter_.so
rm -rf aiter/jit/build
rm -rf aiter/jit/*.so
rm -rf aiter/jit/jit/build
rm -rf build
rm -rf aiter.egg-info
rm -rf aiter_meta

echo "### uninstall aiter..."
pip uninstall aiter -y


echo "### start rebuild aiter..."
# 诊断卡住时建议:
# 1) AITER_PREBUILD_LOG_PROGRESS=1: 打印每个模块 START/DONE
# 2) AITER_PREBUILD_VERBOSE=1: 打开每个模块的详细编译输出(hipcc/ninja -v)
# 3)AITER_LOG_MORE=2: Python/JIT 流程、模块触发、参数和更高层日志
# 4) MAX_JOBS=1: 串行编译
# 5)AITER_REBUILD=1: 强制重新编译所有模块(默认只编译缺失的模块)

# install mode:
PYTHONUNBUFFERED=1 GPU_ARCHS="gfx936;gfx938" PREBUILD_KERNELS=1 AITER_PREBUILD_LOG_PROGRESS=1 python setup.py bdist_wheel

# develop mode:
# GPU_ARCHS="gfx936;gfx938" python setup.py develop


echo "## How to run test cases"
echo "### 1. If you are in develop mode, just run: python op_tests/test_***.py"
echo "### 2. If you are in install mode:"
echo "       1) you can run: export PYTHONPATH=. to add current dir to PYTHONPATH, then run: python op_tests/test_***.py"
echo "       2) or you can run: python -m op_tests.test_***   # note that there is no '.py' suffix"