File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -1526,7 +1526,7 @@ test_executorch() {
15261526test_linux_aarch64 () {
15271527 python test/run_test.py --include test_modules test_mkldnn test_mkldnn_fusion test_openmp test_torch test_dynamic_shapes \
15281528 test_transformers test_multiprocessing test_numpy_interop test_autograd test_binary_ufuncs test_complex test_spectral_ops \
1529- test_foreach test_reductions test_unary_ufuncs test_tensor_creation_ops test_ops \
1529+ test_foreach test_reductions test_unary_ufuncs test_tensor_creation_ops test_ops test_cpp_extensions_open_device_registration \
15301530 --shard " $SHARD_NUMBER " " $NUM_TEST_SHARDS " --verbose
15311531
15321532 # Dynamo tests
Original file line number Diff line number Diff line change 1616import torch .utils .cpp_extension
1717from torch .serialization import safe_globals
1818from torch .testing ._internal .common_utils import (
19- IS_ARM64 ,
2019 skipIfTorchDynamo ,
2120 TemporaryFileName ,
2221 TEST_CUDA ,
@@ -36,7 +35,6 @@ class _OpenRegMod:
3635 return _OpenRegMod ()
3736
3837
39- @unittest .skipIf (IS_ARM64 , "Does not work on arm" )
4038@unittest .skipIf (TEST_XPU , "XPU does not support cppextension currently" )
4139@torch .testing ._internal .common_utils .markDynamoStrictTest
4240class TestCppExtensionOpenRgistration (common .TestCase ):
You can’t perform that action at this time.
0 commit comments