[Submodule] Remove deprecated USE_TBB option and TBB submodule (#127051)

Pull Request resolved: https://github.com/pytorch/pytorch/pull/127051
Approved by: https://github.com/cpuhrsch, https://github.com/malfet
This commit is contained in:
cyy
2024-05-27 03:54:03 +00:00
committed by PyTorch MergeBot
parent 6aa5bb1a76
commit 4fdbaa794f
34 changed files with 19 additions and 863 deletions

View File

@ -64,8 +64,6 @@ def get_cpu_parallel_backend_flags():
defs = []
if parallel_backend == "openmp":
defs.append("-DAT_PARALLEL_OPENMP_FBCODE=1")
elif parallel_backend == "tbb":
defs.append("-DAT_PARALLEL_NATIVE_TBB_FBCODE=1")
elif parallel_backend == "native":
defs.append("-DAT_PARALLEL_NATIVE_FBCODE=1")
else: