Skip to content

Commit 8d2e653

Browse files
committed
Fix omp_in_final runtime function typo
1 parent 8e4965e commit 8d2e653

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/numba/openmp/omp_runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def numba_to_ctype(tstr):
8484
omp_get_team_size = _OpenmpExternalFunction(
8585
"omp_get_team_size", types.int32(types.int32)
8686
)
87-
omp_in_final = _OpenmpExternalFunction("omp_in_finale", types.int32())
87+
omp_in_final = _OpenmpExternalFunction("omp_in_final", types.int32())
8888
omp_get_proc_bind = _OpenmpExternalFunction("omp_get_proc_bind", types.int32())
8989
omp_get_num_places = _OpenmpExternalFunction("omp_get_num_places", types.int32())
9090
omp_get_place_num_procs = _OpenmpExternalFunction(

0 commit comments

Comments
 (0)