Isaac Sim 4.0 support, Kinematics API doc, Windows support
This commit is contained in:
7
setup.py
7
setup.py
@@ -17,6 +17,9 @@
|
||||
# References:
|
||||
# * https://setuptools.pypa.io/en/latest/setuptools.html#setup-cfg-only-projects
|
||||
|
||||
# Standard Library
|
||||
import sys
|
||||
|
||||
# Third Party
|
||||
import setuptools
|
||||
from torch.utils.cpp_extension import BuildExtension, CUDAExtension
|
||||
@@ -31,6 +34,10 @@ extra_cuda_args = {
|
||||
"--prec-sqrt=false",
|
||||
]
|
||||
}
|
||||
|
||||
if sys.platform == "win32":
|
||||
extra_cuda_args["nvcc"].append("--allow-unsupported-compiler")
|
||||
|
||||
# create a list of modules to be compiled:
|
||||
ext_modules = [
|
||||
CUDAExtension(
|
||||
|
||||
Reference in New Issue
Block a user