https://github.com/spcl/icon-artifacts
https://github.com/spcl/icon-artifacts
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/spcl/icon-artifacts
- Owner: spcl
- Created: 2025-02-15T22:51:37.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-01T10:35:02.000Z (6 months ago)
- Last Synced: 2025-07-01T11:27:09.396Z (6 months ago)
- Language: C++
- Size: 338 MB
- Stars: 1
- Watchers: 7
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Steps to numerically validate individual SDFGs:
1. Compile the SDFG
2. Place the main* file corresponding to the SDFG in the /src/cpu folder of your dace build folder
3. Place the serde* file corresponding to the SDFG in the /include/ folder of your dace build folder
4. Get the inputs for the SDFG and adapt the path in main* to the path where you saved the inputs
5. Compile, adding the include to dace.h such as ```c++ solver_mcica_sw.cpp main_solver_mcica_sw.cc -I../../include -I//dace/runtime/include/ -std=c++17 -O0 -ggdb```
6. Execute
7. Diff the *.want and *got files. (currently bit-accurate, we can do something more clever if necessary)