From 06e1a310174519a93a6b9a77faf9ee9218218695 Mon Sep 17 00:00:00 2001 From: Mark Glines Date: Wed, 30 Sep 2020 12:25:50 -0400 Subject: [PATCH] More minor README.md updates Correct the minimum CMake version. Use /build more consistently. Fix instructions for running Python tests directly. Update TLDR to run all available tests, not just the C++ ones. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6664b57da..aa4027f16 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,13 @@ email list where we post announcements, RFCs, and notifications of API changes, or the [taco-discuss](https://lists.csail.mit.edu/mailman/listinfo/taco-discuss) email list for open discussions and questions. -TL;DR build taco using CMake. Run `taco-test` in the `bin` directory. +TL;DR build taco using CMake. Run `make test`. # Build and test ![Build and Test](https://github.com/RSenApps/taco/workflows/Build%20and%20Test/badge.svg?branch=master) -Build taco using CMake 2.8.3 or greater: +Build taco using CMake 2.8.12 or greater: cd mkdir build @@ -44,7 +44,7 @@ To build taco with the Python API (pytaco), add `-DPYTHON=ON` to the cmake line You will then need to add the pytaco module to PYTHONPATH: - export PYTHONPATH=/lib:$PYTHONPATH + export PYTHONPATH=/build/lib:$PYTHONPATH pytaco requires NumPy and SciPy to be installed. @@ -82,7 +82,7 @@ To run the C++ test suite individually: To run the Python test suite individually: cd - python3 python_bindings/unit_tests.py + python3 build/python_bindings/unit_tests.py # Library example