Skip to content

Commit

Permalink
Fixed NVRTC bug really
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronYoung5 committed Nov 4, 2023
1 parent 8522242 commit fb74482
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docker/data/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
2 changes: 1 addition & 1 deletion docker/snippets/chrono.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ RUN git clone --recursive -b ${CHRONO_BRANCH} ${CHRONO_REPO} ${CHRONO_DIR} && \
-DEigen3_DIR=/usr/lib/cmake/eigen3 \
-DOptiX_INCLUDE=/opt/optix/include \
-DOptiX_INSTALL_DIR=/opt/optix \
-DUSE_CUDA_NVRTC=OFF \
-DUSE_CUDA_NVRTC=ON \
-DNUMPY_INCLUDE_DIR=$(python3 -c 'import numpy; print(numpy.get_include())') \
-DCMAKE_INSTALL_PREFIX=${CHRONO_INSTALL_DIR} \
-Dvsg_DIR=/opt/vsg/lib/cmake/vsg \
Expand Down
3 changes: 2 additions & 1 deletion sim/python/demo_ART_cone.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ def main(args):
DATA_DIR = "/opt/chrono/share/chrono/data"
chrono.SetChronoDataPath(f"{DATA_DIR}/")
veh.SetDataPath(f"{DATA_DIR}/vehicle/")
sens.SetSensorShaderDir("/opt/chrono/lib/sensor_ptx/")
# sens.SetSensorShaderDir("/opt/chrono/lib/sensor_ptx/")
# sens.SetSensorShaderDir("/home/art/chrono/build/lib/sensor_ptx")

# Create the vehicle
init_loc = chrono.ChVectorD(-2.2, 0.5, 0.2)
Expand Down

0 comments on commit fb74482

Please sign in to comment.