Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
b796812
1
Parent(s):
58cb6bc
Fix missing kwarg
Browse files- pysr/julia_extensions.py +1 -1
pysr/julia_extensions.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
from .julia_import import jl
|
4 |
|
5 |
|
6 |
-
def load_required_packages(*, turbo=False, enable_autodiff=False):
|
7 |
if turbo:
|
8 |
load_package("LoopVectorization")
|
9 |
if enable_autodiff:
|
|
|
3 |
from .julia_import import jl
|
4 |
|
5 |
|
6 |
+
def load_required_packages(*, turbo=False, enable_autodiff=False, cluster_manager=None):
|
7 |
if turbo:
|
8 |
load_package("LoopVectorization")
|
9 |
if enable_autodiff:
|