Remove OpenMP from C rewrite kernel

The C rewrite introduced OpenMP parallelism. Remove all OpenMP.
This commit is contained in:
2026-02-25 13:15:24 +00:00
parent 09b937c022
commit 284ab80baf
5 changed files with 111 additions and 206 deletions

View File

@@ -41,8 +41,8 @@ void fdderivs(const int ex[3],
const size_t nz = (size_t)ex3 + 2;
const size_t fh_size = nx * ny * nz;
static thread_local double *fh = NULL;
static thread_local size_t cap = 0;
static double *fh = NULL;
static size_t cap = 0;
if (fh_size > cap) {
free(fh);