Skip to content
Snippets Groups Projects
Commit 625265d2 authored by Rlahuerta's avatar Rlahuerta
Browse files

Merge remote-tracking branch 'origin/autograd_support' into autograd_support

parents ad0a4701 9c053552
No related branches found
No related tags found
1 merge request!199Autograd support
Pipeline #36099 failed
This commit is part of merge request !199. Comments created here will be created in the context of that merge request.
...@@ -147,7 +147,7 @@ RUN . $PENV_ACT \ ...@@ -147,7 +147,7 @@ RUN . $PENV_ACT \
# && pip install --ignore-installed . # && pip install --ignore-installed .
&& python setup.py install && python setup.py install
EXPOSE 80 EXPOSE 8888
WORKDIR "/home" WORKDIR "/home"
RUN echo "source ${PYSETUP_PATH}/.venv/bin/activate" >> ~/.bashrc RUN echo "source ${PYSETUP_PATH}/.venv/bin/activate" >> ~/.bashrc
......
This diff is collapsed.
...@@ -73,8 +73,8 @@ Cython = "^0.29.32" ...@@ -73,8 +73,8 @@ Cython = "^0.29.32"
nptyping = "^2.3.1" nptyping = "^2.3.1"
windIO = {git = "https://github.com/FUSED-Wind/windIO.git"} windIO = {git = "https://github.com/FUSED-Wind/windIO.git"}
nbsphinx-link = {git = "https://github.com/vidartf/nbsphinx-link.git"} nbsphinx-link = {git = "https://github.com/vidartf/nbsphinx-link.git"}
py-wake = {git = "https://gitlab.windenergy.dtu.dk/TOPFARM/PyWake.git", branch = "vpatches"}
# petsc4py = {git = "https://gitlab.com/petsc/petsc4py.git"} # petsc4py = {git = "https://gitlab.com/petsc/petsc4py.git"}
py-wake = "^2.4.0"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
......
...@@ -329,7 +329,7 @@ class EasyIpOptOptimizeDriver(drv.ScipyOptimizeDriver, EasyDriverBase): ...@@ -329,7 +329,7 @@ class EasyIpOptOptimizeDriver(drv.ScipyOptimizeDriver, EasyDriverBase):
""" """
def __init__(self, maxiter: int = 200, tol: float = 1.e-8, disp: bool = True, multistart: int = 1, def __init__(self, maxiter: int = 200, tol: float = 1.e-8, disp: bool = True, multistart: int = 1,
lsearch: int = 15, perturbation: float = 0.25, fd: bool = False, **kwargs): lsearch: int = 15, perturbation: float = 0.25, fd: bool = True, **kwargs):
""" """
Parameters (FIXME - **kwargs) Parameters (FIXME - **kwargs)
---------- ----------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment