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

@@ -5,7 +5,6 @@
#include <stddef.h>
#include <math.h>
#include <stdio.h>
#include <omp.h>
/* 主网格0-based -> 1D */
static inline size_t idx_ex(int i0, int j0, int k0, const int ex[3]) {
const int ex1 = ex[0], ex2 = ex[1];