Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ Looking for more diverse and higher-quality dexterous grasps? Check out [Dexonom
conda create -n bodex python=3.10
conda activate bodex

conda install pytorch==2.2.2 pytorch-cuda=12.1 -c pytorch -c nvidia
~~ conda install pytorch==2.2.2 pytorch-cuda=12.1 -c pytorch -c nvidia ~~
pip install torch==2.2.2+cu121 -f https://download.pytorch.org/whl/torch_stable.html

pip install -e . --no-build-isolation

Expand Down
2 changes: 1 addition & 1 deletion src/curobo/geom/cpp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
'coal', 'boost_filesystem', 'qhull_r', 'octomap', 'octomath', 'assimp', 'stdc++', 'gcc_s', 'pthread', 'm', 'rt', 'c'
],
include_dirs=[include_dir, eigen_include_dir, pybind11.get_include()],
extra_compile_args=["-fopenmp", "-std=c++11"], # OpenMP and C++11 support
extra_compile_args=["-fopenmp", "-std=c++14"], # OpenMP and C++14 support
extra_link_args=[f"-L{lib_dir}", "-lcoal", "-fopenmp"],
language="c++"
)
Expand Down