From 39fb3d32bdc6c10b55fa0b6d950cf075394135e8 Mon Sep 17 00:00:00 2001 From: Sameer Sheorey <41028320+ssheorey@users.noreply.github.com> Date: Tue, 30 Jul 2024 16:31:57 -0700 Subject: [PATCH] Allow pybind to load tbb12.dll and tbb12_debug.dll --- python/open3d/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/open3d/__init__.py b/python/open3d/__init__.py index e4557217a20..d1d85fc27e3 100644 --- a/python/open3d/__init__.py +++ b/python/open3d/__init__.py @@ -47,7 +47,7 @@ def load_cdll(path): pass if sys.platform == 'win32': # Unix: Use rpath to find libraries - load_cdll(str(next((Path(__file__).parent).glob("*tbb12.*")))) + load_cdll(str(next((Path(__file__).parent).glob("tbb12*dll")))) # Enable CPU rendering based on env vars if _build_config["BUILD_GUI"] and sys.platform.startswith("linux") and (