@@ -26,7 +26,7 @@ email list for open discussions and questions.
2626TL;DR build taco using CMake. Run ` taco-test ` in the ` bin ` directory.
2727
2828
29- # Build and test
29+ # Build and test
3030![ Build and Test] ( https://github.com/RSenApps/taco/workflows/Build%20and%20Test/badge.svg?branch=master )
3131
3232Build taco using CMake 2.8.3 or greater:
@@ -44,7 +44,7 @@ To build taco with the Python API (pytaco), add `-DPYTHON=ON` to the cmake line
4444
4545You will then need to add the pytaco module to PYTHONPATH:
4646
47- export PYTHONPATH=<taco-directory>/python_bindings/ :$PYTHONPATH
47+ export PYTHONPATH=<taco-build- directory>/lib :$PYTHONPATH
4848
4949pytaco requires NumPy and SciPy to be installed.
5050
@@ -59,11 +59,11 @@ To build taco for NVIDIA CUDA, add `-DCUDA=ON` to the cmake line above. For exam
5959 cmake -DCMAKE_BUILD_TYPE=Release -DCUDA=ON ..
6060
6161Please also make sure that you have CUDA installed properly and that the following environment variables are set correctly:
62-
62+
6363 export PATH=/usr/local/cuda/bin:$PATH
6464 export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH
6565 export LIBRARY_PATH=/usr/local/cuda/lib64:$LIBRARY_PATH
66-
66+
6767If you do not have CUDA installed, you can still use the taco cli to generate CUDA code with the -cuda flag.
6868
6969## Running tests
@@ -137,7 +137,7 @@ the same effect:
137137 cd <taco-directory>
138138 ./build/bin/taco
139139 Usage: taco [options] <index expression>
140-
140+
141141 Examples:
142142 taco "a(i) = b(i) + c(i)" # Dense vector add
143143 taco "a(i) = b(i) + c(i)" -f=b:s -f=c:s -f=a:s # Sparse vector add
0 commit comments