We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a8e1d7 commit 7647ed9Copy full SHA for 7647ed9
.ci/scripts/test_torchao_huggingface_checkpoints.sh
@@ -107,12 +107,14 @@ fi
107
if [[ "$TEST_WITH_RUNNER" -eq 1 ]]; then
108
echo "[runner] Building and testing llama_main ..."
109
cmake --preset llm -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out
110
+ cmake --build cmake-out -j16 --target install --config Release
111
112
# Install llama runner
- cmake -DPYTHON_EXECUTABLE=python \
113
- -DCMAKE_BUILD_TYPE=Release \
114
- -Bcmake-out/examples/models/llama \
115
- examples/models/llama
+ cmake -DCMAKE_INSTALL_PREFIX=cmake-out \
+ -DBUILD_TESTING=OFF \
+ -DCMAKE_BUILD_TYPE=Release \
116
+ -Bcmake-out/examples/models/llama \
117
+ examples/models/llama
118
cmake --build cmake-out/examples/models/llama -j16 --config Release
119
120
# Run the model
0 commit comments