Isaac Sim 4.0 support, Kinematics API doc, Windows support

This commit is contained in:
Balakumar Sundaralingam
2024-07-20 14:51:43 -07:00
parent 2ae381f328
commit 3690d28c54
83 changed files with 2818 additions and 497 deletions

View File

@@ -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(