Skip to content

Commit

Permalink
Fixed failing CMSIS-NN test: it fails in CI on i686
Browse files Browse the repository at this point in the history
Change-Id: I0ee009d5c00dc97244ed6cbdacf49745c26530d7
  • Loading branch information
ashutosh-arm committed Aug 31, 2021
1 parent 6a63601 commit b674bec
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/python/contrib/test_cmsisnn/test_softmax.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

"""CMSIS-NN integration tests: softmax"""

import platform
import sys
import os
import pathlib
Expand Down Expand Up @@ -108,6 +109,9 @@ def make_model(shape, in_dtype, out_dtype, zero_point, scale):
valid_scale = 1.0 / 256


@pytest.mark.skipif(
platform.machine() == "i686", reason="Reference system unavailable in i386 container"
)
def test_softmax_int8():
interface_api = "c"
use_unpacked_api = True
Expand Down

0 comments on commit b674bec

Please sign in to comment.