| name | write-tests |
| description | Guide for writing tests in the project |
To write new tests in the project follow theese:
- For tests related to error tracking, add a directory in tests/cpu_checking/error_analysis/ with the name of the test.
- Inside that directory, create a file named
main.cpp and write your test cases using pytest.
- As an example of tests, see: test_fp32_dot_product, test_fp32_average, test_fp32_nested_loop.
- For now, only write tests in FP32 precision.
- There must be a pytest file with the name of the directory and extesion .py, for example: test_fp32_dot_product.py.
- To test if the tool works correctly, we write a program in FP32 precision and instrument the code. Then we run the same function in FP64 precision and compare the results. The test should fail if the results are different, and pass if they are similar.
- To build the Mkefile, see the examples.
- To run the tests, use the following command:
ml python
pytest tests/cpu_checking/error_analysis/<test_directory>
Enssure the clang tool is installed and available:
source ~/.bashrc
conda activate tutorial_env