Unverified Commit b94f176a authored by Omkar Salpekar's avatar Omkar Salpekar Committed by GitHub
Browse files

[Nova] Disable CircleCI Linux CPU Unittests (#6968)

* [Nova] Disable CircleCI Linux Unittests

* add back linux gpu jobs
parent 474d87b8
...@@ -1488,22 +1488,6 @@ workflows: ...@@ -1488,22 +1488,6 @@ workflows:
- unittest_torchhub - unittest_torchhub
- unittest_onnx - unittest_onnx
- unittest_extended - unittest_extended
- unittest_linux_cpu:
cu_version: cpu
name: unittest_linux_cpu_py3.7
python_version: '3.7'
- unittest_linux_cpu:
cu_version: cpu
name: unittest_linux_cpu_py3.8
python_version: '3.8'
- unittest_linux_cpu:
cu_version: cpu
name: unittest_linux_cpu_py3.9
python_version: '3.9'
- unittest_linux_cpu:
cu_version: cpu
name: unittest_linux_cpu_py3.10
python_version: '3.10'
- unittest_linux_gpu: - unittest_linux_gpu:
cu_version: cu116 cu_version: cu116
filters: filters:
......
...@@ -250,6 +250,8 @@ def unittest_workflows(indentation=6): ...@@ -250,6 +250,8 @@ def unittest_workflows(indentation=6):
for device_type in ["cpu", "gpu"]: for device_type in ["cpu", "gpu"]:
if os_type == "macos" and device_type == "gpu": if os_type == "macos" and device_type == "gpu":
continue continue
if os_type == "linux" and device_type == "cpu":
continue
for i, python_version in enumerate(PYTHON_VERSIONS): for i, python_version in enumerate(PYTHON_VERSIONS):
job = { job = {
"name": f"unittest_{os_type}_{device_type}_py{python_version}", "name": f"unittest_{os_type}_{device_type}_py{python_version}",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment