Add OpenMP support

This commit is contained in:
Justine Tunney 2024-01-28 21:57:40 -08:00
parent c1e18e7903
commit 5f8e9f14c1
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
742 changed files with 94643 additions and 1279 deletions

View file

@ -10,7 +10,11 @@
"_Complex"))
(cuda
'("__device__"
'("gridDim"
"blockIdx"
"blockDim"
"threadIdx"
"__device__"
"__forceinline__"
"__global__"
"__shared__"

View file

@ -214,7 +214,7 @@
(buddy (format "test/%s_test.c" name))
(runs (format "o/$m/%s.com%s V=5 TESTARGS=-b" name runsuffix))
(buns (format "o/$m/test/%s_test.com%s V=5 TESTARGS=-b" name runsuffix)))
(cond ((not (member ext '("c" "cc" "s" "S" "rl" "f")))
(cond ((not (member ext '("c" "cc" "cpp" "s" "S" "rl" "f")))
(format "m=%s; make -j12 MODE=$m o/$m/%s"
mode
(directory-file-name
@ -753,6 +753,7 @@
(concat dots notest ".c")
(concat dots notest ".cc")
(concat dots notest ".rl")
(concat dots notest ".cpp")
(concat dots notest ".greg.c")
(concat dots notest ".ncabi.c")
(concat dots notest ".hookabi.c")