Unverified Commit 71161e8b authored by Fadi Arafeh's avatar Fadi Arafeh Committed by GitHub
Browse files

[cpu][ci] remove soft-fail for Arm CI and add quant model tests (#37691)


Signed-off-by: default avatarFadi Arafeh <fadi.arafeh@arm.com>
parent 38de8223
......@@ -101,6 +101,7 @@ steps:
- label: "Arm CPU Test"
depends_on: []
soft_fail: false
device: arm_cpu
no_plugin: true
commands:
......
......@@ -5,8 +5,8 @@
set -ex
# allow to bind to different cores
CORE_RANGE=${CORE_RANGE:-0-16}
OMP_CORE_RANGE=${OMP_CORE_RANGE:-0-16}
CORE_RANGE=${CORE_RANGE:-0-31}
OMP_CORE_RANGE=${OMP_CORE_RANGE:-0-31}
export CMAKE_BUILD_PARALLEL_LEVEL=16
......@@ -41,6 +41,11 @@ function cpu_tests() {
set -e
pytest -x -v -s tests/models/multimodal/generation/test_whisper.py -m cpu_model"
# Run quantized model tests
docker exec cpu-test bash -c "
set -e
pytest -x -v -s tests/quantization/test_compressed_tensors.py::test_compressed_tensors_w8a8_logprobs"
# Run kernel tests
docker exec cpu-test bash -c "
set -e
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment