Skip to content

Commit

Permalink
Try to remove GIL
Browse files Browse the repository at this point in the history
  • Loading branch information
Moelf committed Nov 3, 2023
1 parent 69b734f commit 2cf82f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/julia/libjulia.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def __init__(self, libjulia_path, bindir, sysimage):
)

with self._pathhack():
self.libjulia = ctypes.PyDLL(libjulia_path, ctypes.RTLD_GLOBAL)
self.libjulia = ctypes.CDLL(libjulia_path, ctypes.RTLD_GLOBAL)

setup_libjulia(self.libjulia)

Expand Down

0 comments on commit 2cf82f9

Please sign in to comment.