Spaces:
Running
on
T4
Running
on
T4
File size: 319 Bytes
d3ef70e 83303a0 33ec58a 69f4b72 33ec58a |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/sh
echo $CUDA_PATH
echo $LD_LIBRARY_PATH
echo $PATH
echo $CUDA_HOME
export CC=/usr/bin/gcc-11 # this ensures that gcc 11 is being used for compilation
export CUDA_HOME=/usr/local/cuda
cd ./models/GroundingDINO/ops
python ./setup.py build install
python ./test.py # should result in 6 lines of * True
cd ../../../ |