Skip to content

Commit

Permalink
Remove parallel run due to issues on ARM
Browse files Browse the repository at this point in the history
Signed-off-by: Kazantsev, Roman <[email protected]>
  • Loading branch information
rkazants committed Dec 23, 2024
1 parent 63b6dc3 commit 3b3414e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/job_jax_layer_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,11 @@ jobs:
- name: JAX Layer Tests
if: ${{ fromJSON(inputs.affected-components).JAX_FE.test }}
run: python3 -m pytest ${{ env.LAYER_TESTS_INSTALL_DIR }}/jax_tests ${PARALLEL} -m precommit_jax_fe -v --junitxml=${{ env.INSTALL_TEST_DIR }}/TEST-jax.xml
run: python3 -m pytest ${{ env.LAYER_TESTS_INSTALL_DIR }}/jax_tests -m precommit_jax_fe --junitxml=${{ env.INSTALL_TEST_DIR }}/TEST-jax.xml
env:
TEST_DEVICE: CPU
TEST_PRECISION: FP16
JAX_TRACE_MODE: JAXPR
PARALLEL: ${{ runner.os == 'Windows' && ' ' || '-n logical'}}

- name: Upload Test Results
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ def test_unary_ops(self, input_shape, input_type, op_type,
pytest.skip("159585: accuracy error on ARM")
self._test(*self.create_unary_net(input_shape, input_type, op_type),
ie_device, precision, ir_version, temp_dir=temp_dir,
use_legacy_frontend=use_legacy_frontend, custom_eps=1e-3)
use_legacy_frontend=use_legacy_frontend, custom_eps=3 * 1e-3)

0 comments on commit 3b3414e

Please sign in to comment.