Skip to content

Commit

Permalink
Be precise about about GIL [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Nov 4, 2018
1 parent 7b6cc24 commit d775089
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,9 @@ Out[3]: array([1., 1., 1., 2., 2., 2., 3., 3., 4., 4.])

### PyJulia does not release GIL

PyJulia (or rather PyCall) does not release GIL while calling Julia
functions. It means that Python code and Julia code cannot run in
PyJulia does not release the Global Interpreter Lock (GIL) while
calling Julia functions since PyCall expects the GIL to be acquired
always. It means that Python code and Julia code cannot run in
parallel.


Expand Down

0 comments on commit d775089

Please sign in to comment.