Skip to content
Snippets Groups Projects
Commit bf557152 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Emphasizing the best performance reccomendation.

parent 8775d239
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ g++ -std=c++14 -I${HOME}/.local/include/tnl example-host.cpp -o example-host
TNL requires standard C++14 which we enforce with the first parameter `-std=c++14`. Next, we need to tell the compiler the folder with TNL headers. This is done with the flag `-I`. By default, TNL installs into `${HOME}/.local/include/tnl`. You may also replace it just with the path where you have downloaded TNL. TNL is header only library and so it does not require any instalation. Finaly, we just past the source code file `example-host.cpp` using the command-line parameter `-c`.
For the best performance we suggest to add parameters `-DNDEBUG -O3 -funroll-loops`. The first one deactivates assertions in TNL which can significantly slow down your program.
** For the best performance we recommend to add parameters `-DNDEBUG -O3 -funroll-loops`. The source code of TNL contains a lot of assertions which significantly decrease the performance. The parameter `-DNDEBUG` deactivates them. **
### Compilation with `nvcc` for CUDA <a name="command_line_nvcc"></a>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment