Skip to content

Commit

Permalink
[mlir][vector] Remove Emulated Sub-directory
Browse files Browse the repository at this point in the history
The "Emulated" sub-directory under "ArmSVE" has
been removed. Associated tests have been up a
directory and now include the "REQUIRES"
constraint for the arm-emulator.
  • Loading branch information
mub-at-arm committed Jun 7, 2024
1 parent c5c530f commit f06a24c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 81 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 5 additions & 0 deletions mlir/test/Integration/Dialect/Vector/CPU/ArmSVE/lit.local.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@ if not config.mlir_run_arm_sve_tests:
# No JIT on win32.
if sys.platform == "win32":
config.unsupported = True

# The tests in this folder assume full control of the hardware features, such as
# the vector length, so must be run under an emulator.
if not config.arm_emulator_executable:
config.unsupported = True
3 changes: 3 additions & 0 deletions mlir/test/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,3 +250,6 @@ def have_host_jit_feature_support(feature_name):

if config.run_rocm_tests:
config.available_features.add("host-supports-amdgpu")

if config.arm_emulator_executable:
config.available_features.add("arm-emulator-executable")

0 comments on commit f06a24c

Please sign in to comment.