File size: 370 Bytes
8c5f93c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# https://huggingface.co/spaces/TencentARC/FreeSplatter/resolve/main/open3d_zerogpu_fix.py?download=true
import fileinput
import site
from pathlib import Path

with fileinput.FileInput(f'{site.getsitepackages()[0]}/open3d/__init__.py', inplace=True) as file:
    for line in file:
        print(line.replace('_pybind_cuda.open3d_core_cuda_device_count()', '1'), end='')