8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 086acd0 commit 35eddf6Copy full SHA for 35eddf6
torch/_inductor/codecache.py
@@ -1497,9 +1497,8 @@ def _check_and_append_supported_isa(
1497
def valid_vec_isa_list() -> List[VecISA]:
1498
isa_list: List[VecISA] = []
1499
if sys.platform == "darwin" and platform.processor() == "arm":
1500
- return isa_list.append(VecNEON())
+ isa_list.append(VecNEON())
1501
1502
- cur_os = sys.platform
1503
if sys.platform not in ["linux", "win32"]:
1504
return isa_list
1505
0 commit comments