First matrix implementation with print_matrix in io
This commit is contained in:
2026-06-23 20:28:11 +02:00
parent 77d2dad320
commit a791201f3a
34 changed files with 824 additions and 1907 deletions
+9 -6
View File
@@ -24,7 +24,7 @@
* Module Name: config
* File Name: omp.hpp
* Revision: 0.1.0
* Date: 20-06-2026
* Date: 23-06-2026
* Author: Michelle Bausager
*
* Description:
@@ -68,6 +68,14 @@
#define PANIC_OMP_NUM_THREADS 0
#endif
// If CMake did not define PANIC_OMP_ALLOW_NESTED, define it as 0.
//
// Meaning:
// Not allow any nested parallel operations.
#ifndef PANIC_OMP_ALLOW_NESTED
#define PANIC_OMP_ALLOW_NESTED 0
#endif
//---------------------------------------------------------------------------------------------------------------------------
// OPENMP AVAILABILITY CHECK
//---------------------------------------------------------------------------------------------------------------------------
@@ -181,8 +189,3 @@
//---------------------------------------------------------------------------------------------------------------------------
// None.
//PANIC_OMP_PARALLEL_FOR
//for (panic::uint_t i = 0; i < length; ++i) {
// data[i] = value;
//}