Closed HCKimDaniel closed 1 year ago
Hi,
From the error message, it looks like NLopt was not installed. You can verify this with conda list | grep nlopt
and install it using conda install nlopt
. I hope this helps.
If possible, we'll review our environment setup and ensure it gets installed in step 1 above.
Dan
@dzalkind, thank you for your help.
I followed your instruction, but it doesn't work. As you commented, nlopt is not in the list, so I installed it.
(base) hkim@WSS4HZ3291:~$ conda list | grep nlopt
(base) hkim@WSS4HZ3291:~$ conda install nlopt
I installed nlopt first
(base) hkim@WSS4HZ3291:~$ conda install nlopt
Collecting package metadata (current_repodata.json): done
Solving environment: done
## Package Plan ##
environment location: /home/hkim/anaconda3
added / updated specs:
- nlopt
The following packages will be downloaded:
package | build
---------------------------|-----------------
nlopt-2.7.1 | py310h3342525_1 415 KB conda-forge
python_abi-3.10 | 2_cp310 4 KB conda-forge
------------------------------------------------------------
Total: 419 KB
The following NEW packages will be INSTALLED:
nlopt conda-forge/linux-64::nlopt-2.7.1-py310h3342525_1
python_abi conda-forge/linux-64::python_abi-3.10-2_cp310
The following packages will be SUPERSEDED by a higher-priority channel:
ca-certificates pkgs/main::ca-certificates-2023.01.10~ --> conda-forge::ca-certificates-2022.12.7-ha878542_0
certifi pkgs/main/linux-64::certifi-2022.12.7~ --> conda-forge/noarch::certifi-2022.12.7-pyhd8ed1ab_0
Proceed ([y]/n)? y
Downloading and Extracting Packages
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
We can see nlopt in conda list
(weis-env) hkim@WSS4HZ3291:~$ conda list | grep nlopt
nlopt 2.7.1 py310h3342525_3 conda-forge
But the results are the same.
(weis-env) hkim@WSS4HZ3291:~/WEIS/examples/06_IEA-15-240-RWT$ python weis_driver_TMDs.py
Using weis.aeroelasticse in ROSCO_toolbox...
Found existing potential model: examples/01_aeroelasticse/OpenFAST_models/IEA-15-240-RWT/IEA-15-240-RWT-UMaineSemi/HydroData/IEA-15-240-RWT-UMaineSemi
- Trying to use this instead of running PyHAMS.
Traceback (most recent call last):
File "/home/hkim/WEIS/WISDEM/wisdem/glue_code/gc_PoseOptimization.py", line 370, in set_driver
from wisdem.optimization_drivers.nlopt_driver import NLoptDriver
File "/home/hkim/WEIS/WISDEM/wisdem/optimization_drivers/nlopt_driver.py", line 12, in <module>
from openmdao.utils.general_utils import simple_warning
ImportError: cannot import name 'simple_warning' from 'openmdao.utils.general_utils' (/home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/openmdao/utils/general_utils.py)
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/hkim/WEIS/examples/06_IEA-15-240-RWT/weis_driver_TMDs.py", line 15, in <module>
wt_opt, modeling_options, opt_options = run_weis(fname_wt_input, fname_modeling_options, fname_analysis_options)
File "/home/hkim/WEIS/weis/glue_code/runWEIS.py", line 129, in run_weis
wt_opt = myopt.set_driver(wt_opt)
File "/home/hkim/WEIS/WISDEM/wisdem/glue_code/gc_PoseOptimization.py", line 372, in set_driver
raise ImportError(
ImportError: You requested an optimization method from NLopt, but need to first install NLopt to use this method.
I remove weis-env and recreated weis-env, but the same error occurs. Can you check one more time?
Thank you
I think this is an issue with an upstream update in OpenMDAO. I believe we resolved it in the most recent version of WISDEM, which I have now incorporated into the WEIS develop
branch. Could you try:
git checkout develop
git pull
(from somewhere in your WEIS directory)
@gbarter Thank you for your help. I tried it, and there is an "ModuleNotFoundError" as below.
(weis-env) hkim@WSS4HZ3291:~/WEIS/examples/06_IEA-15-240-RWT$ python weis_driver_TMDs.py
Using weis.aeroelasticse in ROSCO_toolbox...
Traceback (most recent call last):
File "/home/hkim/WEIS/examples/06_IEA-15-240-RWT/weis_driver_TMDs.py", line 2, in <module>
from weis.glue_code.runWEIS import run_weis
File "/home/hkim/WEIS/weis/glue_code/runWEIS.py", line 7, in <module>
from weis.glue_code.glue_code import WindPark
File "/home/hkim/WEIS/weis/glue_code/glue_code.py", line 23, in <module>
from weis.frequency.raft_wrapper import RAFT_WEIS
File "/home/hkim/WEIS/weis/frequency/raft_wrapper.py", line 6, in <module>
from raft.omdao_raft import RAFT_OMDAO
File "/home/hkim/WEIS/RAFT/raft/__init__.py", line 3, in <module>
import raft.raft_model as model
File "/home/hkim/WEIS/RAFT/raft/raft_model.py", line 17, in <module>
import raft.raft_fowt as fowt
File "/home/hkim/WEIS/RAFT/raft/raft_fowt.py", line 7, in <module>
import pyhams.pyhams as ph
File "/home/hkim/WEIS/pyHAMS/pyhams/pyhams.py", line 7, in <module>
import pyhams._hams as hams
ModuleNotFoundError: No module named 'pyhams._hams'
I think the root cause is that your installation never succeeded in the first place. Can you do python setup.py develop
and look at the output for errors?
@gbarter
I removed the environment, created new environment again, and used the "develop" branch.
In this branch, I got some errors as below in python setup.py develop
. These errors didn't occur in previous case.
I posted whole results from conda env create to run example for "weis_driver.py for 06 Example"
Collecting package metadata (repodata.json): done
Solving environment: done
Downloading and Extracting Packages
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
Installing pip dependencies: - Ran pip subprocess with arguments:
['/home/hkim/anaconda3/envs/weis-env/bin/python', '-m', 'pip', 'install', '-U', '-r', '/tmp/condaenv.9ydvt3h1.requirements.txt', '--exists-action=b']
Pip subprocess output:
Collecting fatpack (from -r /tmp/condaenv.9ydvt3h1.requirements.txt (line 1))
Using cached fatpack-0.7.7-py3-none-any.whl (18 kB)
Collecting marmot-agents (from -r /tmp/condaenv.9ydvt3h1.requirements.txt (line 2))
Using cached marmot_agents-0.2.5-py3-none-any.whl (39 kB)
Collecting mat4py (from -r /tmp/condaenv.9ydvt3h1.requirements.txt (line 3))
Using cached mat4py-0.5.0-py2.py3-none-any.whl (13 kB)
Requirement already satisfied: numpy in ./lib/python3.10/site-packages (from fatpack->-r /tmp/condaenv.9ydvt3h1.requirements.txt (line 1)) (1.23.1)
Installing collected packages: mat4py, marmot-agents, fatpack
Successfully installed fatpack-0.7.7 marmot-agents-0.2.5 mat4py-0.5.0
done
#
# To activate this environment, use
#
# $ conda activate weis-env
#
# To deactivate an active environment, use
#
# $ conda deactivate
(base) hkim@WSS4HZ3291:~$ conda activate weis-env
(weis-env) hkim@WSS4HZ3291:~$ sudo apt update
[sudo] password for hkim:
Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease
Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB]
Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [108 kB]
Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB]
Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [912 kB]
Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [18.7 kB]
Get:7 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [14.3 kB]
Fetched 1282 kB in 11s (118 kB/s)
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
102 packages can be upgraded. Run 'apt list --upgradable' to see them.
(weis-env) hkim@WSS4HZ3291:~$ conda config --add channels conda-forge
Warning: 'conda-forge' already in 'channels' list, moving to the top
(weis-env) hkim@WSS4HZ3291:~$ sudo apt install gcc g++ gfortran libblas-dev liblapack-dev -y
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
g++ is already the newest version (4:11.2.0-1ubuntu1).
gcc is already the newest version (4:11.2.0-1ubuntu1).
gfortran is already the newest version (4:11.2.0-1ubuntu1).
libblas-dev is already the newest version (3.10.0-2ubuntu1).
liblapack-dev is already the newest version (3.10.0-2ubuntu1).
0 upgraded, 0 newly installed, 0 to remove and 102 not upgraded.
(weis-env) hkim@WSS4HZ3291:~$ git clone https://github.com/WISDEM/WEIS.git
Cloning into 'WEIS'...
remote: Enumerating objects: 35541, done.
remote: Counting objects: 100% (2047/2047), done.
remote: Compressing objects: 100% (1240/1240), done.
remote: Total 35541 (delta 814), reused 1726 (delta 775), pack-reused 33494
Receiving objects: 100% (35541/35541), 163.96 MiB | 6.65 MiB/s, done.
Resolving deltas: 100% (23343/23343), done.
Updating files: 100% (3282/3282), done.
(weis-env) hkim@WSS4HZ3291:~$ cd WEIS
(weis-env) hkim@WSS4HZ3291:~/WEIS$ git checkout develop
Updating files: 100% (786/786), done.
branch 'develop' set up to track 'origin/develop'.
Switched to a new branch 'develop'
(weis-env) hkim@WSS4HZ3291:~/WEIS$ git pull
Already up to date.
(weis-env) hkim@WSS4HZ3291:~/WEIS$ python setup.py develop
/home/hkim/WEIS/setup.py:5: DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives
from distutils.core import run_setup
/home/hkim/WEIS/setup.py:7: DeprecationWarning:
`numpy.distutils` is deprecated since NumPy 1.23.0, as a result
of the deprecation of `distutils` itself. It will be removed for
Python >= 3.12. For older Python versions it will remain present.
It is recommended to use `setuptools < 60.0` for those Python versions.
For more details, see:
https://numpy.org/devdocs/reference/distutils_status_migration.html
from numpy.distutils.command.build_ext import build_ext
['setup.py', 'develop']
Traceback (most recent call last):
File "/home/hkim/WEIS/WISDEM/setup.py", line 104, in <module>
run_meson_build(staging_dir)
File "/home/hkim/WEIS/WISDEM/setup.py", line 44, in run_meson_build
raise OSError("The meson command cannot be found on the system")
OSError: The meson command cannot be found on the system
running develop
/home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/setuptools/command/easy_install.py:156: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
running egg_info
creating rosco.egg-info
writing rosco.egg-info/PKG-INFO
writing dependency_links to rosco.egg-info/dependency_links.txt
writing requirements to rosco.egg-info/requires.txt
writing top-level names to rosco.egg-info/top_level.txt
writing manifest file 'rosco.egg-info/SOURCES.txt'
reading manifest file 'rosco.egg-info/SOURCES.txt'
adding license file 'LICENSE'
writing manifest file 'rosco.egg-info/SOURCES.txt'
running build_ext
Creating /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/rosco.egg-link (link to .)
Adding rosco 2.6.0 to easy-install.pth file
Installed /home/hkim/WEIS/ROSCO
Processing dependencies for rosco==2.6.0
Searching for pytest
Reading https://pypi.org/simple/pytest/
/home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/pkg_resources/__init__.py:116: PkgResourcesDeprecationWarning: is an invalid version and will not be supported in a future release
warnings.warn(
Downloading https://files.pythonhosted.org/packages/1b/d1/72df649a705af1e3a09ffe14b0c7d3be1fd730da6b98beb4a2ed26b8a023/pytest-7.3.1-py3-none-any.whl#sha256=3799fa815351fea3a5e96ac7e503a96fa51cc9942c3753cda7651b93c1cfa362
Best match: pytest 7.3.1
Processing pytest-7.3.1-py3-none-any.whl
Installing pytest-7.3.1-py3-none-any.whl to /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Adding pytest 7.3.1 to easy-install.pth file
Installing py.test script to /home/hkim/anaconda3/envs/weis-env/bin
Installing pytest script to /home/hkim/anaconda3/envs/weis-env/bin
Installed /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/pytest-7.3.1-py3.10.egg
Searching for pandas==2.0.1
Best match: pandas 2.0.1
Adding pandas 2.0.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for future==0.18.3
Best match: future 0.18.3
Adding future 0.18.3 to easy-install.pth file
Installing futurize script to /home/hkim/anaconda3/envs/weis-env/bin
Installing pasteurize script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for PyYAML==6.0
Best match: PyYAML 6.0
Adding PyYAML 6.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for scipy==1.10.1
Best match: scipy 1.10.1
Adding scipy 1.10.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for numpy==1.23.1
Best match: numpy 1.23.1
Adding numpy 1.23.1 to easy-install.pth file
Installing f2py script to /home/hkim/anaconda3/envs/weis-env/bin
Installing f2py3 script to /home/hkim/anaconda3/envs/weis-env/bin
Installing f2py3.10 script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for matplotlib==3.7.1
Best match: matplotlib 3.7.1
Adding matplotlib 3.7.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for tzdata==2023.3
Best match: tzdata 2023.3
Adding tzdata 2023.3 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for python-dateutil==2.8.2
Best match: python-dateutil 2.8.2
Adding python-dateutil 2.8.2 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for pytz==2023.3
Best match: pytz 2023.3
Adding pytz 2023.3 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for tomli==2.0.1
Best match: tomli 2.0.1
Adding tomli 2.0.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for pluggy==1.0.0
Best match: pluggy 1.0.0
Adding pluggy 1.0.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for packaging==23.1
Best match: packaging 23.1
Adding packaging 23.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for iniconfig==2.0.0
Best match: iniconfig 2.0.0
Adding iniconfig 2.0.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for exceptiongroup==1.1.1
Best match: exceptiongroup 1.1.1
Adding exceptiongroup 1.1.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for fonttools==4.39.3
Best match: fonttools 4.39.3
Adding fonttools 4.39.3 to easy-install.pth file
Installing fonttools script to /home/hkim/anaconda3/envs/weis-env/bin
Installing pyftmerge script to /home/hkim/anaconda3/envs/weis-env/bin
Installing pyftsubset script to /home/hkim/anaconda3/envs/weis-env/bin
Installing ttx script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for pyparsing==3.0.9
Best match: pyparsing 3.0.9
Adding pyparsing 3.0.9 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for contourpy==1.0.7
Best match: contourpy 1.0.7
Adding contourpy 1.0.7 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for cycler==0.11.0
Best match: cycler 0.11.0
Adding cycler 0.11.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for kiwisolver==1.4.4
Best match: kiwisolver 1.4.4
Adding kiwisolver 1.4.4 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for Pillow==9.5.0
Best match: Pillow 9.5.0
Adding Pillow 9.5.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for six==1.16.0
Best match: six 1.16.0
Adding six 1.16.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Finished processing dependencies for rosco==2.6.0
running develop
running egg_info
creating pCrunch.egg-info
writing pCrunch.egg-info/PKG-INFO
writing dependency_links to pCrunch.egg-info/dependency_links.txt
writing requirements to pCrunch.egg-info/requires.txt
writing top-level names to pCrunch.egg-info/top_level.txt
writing manifest file 'pCrunch.egg-info/SOURCES.txt'
reading manifest file 'pCrunch.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE.txt'
writing manifest file 'pCrunch.egg-info/SOURCES.txt'
running build_ext
Creating /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/pCrunch.egg-link (link to .)
Adding pCrunch 1.0.0 to easy-install.pth file
Installed /home/hkim/WEIS/pCrunch
Processing dependencies for pCrunch==1.0.0
Searching for fatpack==0.7.7
Best match: fatpack 0.7.7
Adding fatpack 0.7.7 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for seaborn==0.12.2
Best match: seaborn 0.12.2
Adding seaborn 0.12.2 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for PyYAML==6.0
Best match: PyYAML 6.0
Adding PyYAML 6.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for scipy==1.10.1
Best match: scipy 1.10.1
Adding scipy 1.10.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for numpy==1.23.1
Best match: numpy 1.23.1
Adding numpy 1.23.1 to easy-install.pth file
Installing f2py script to /home/hkim/anaconda3/envs/weis-env/bin
Installing f2py3 script to /home/hkim/anaconda3/envs/weis-env/bin
Installing f2py3.10 script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for matplotlib==3.7.1
Best match: matplotlib 3.7.1
Adding matplotlib 3.7.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for pandas==2.0.1
Best match: pandas 2.0.1
Adding pandas 2.0.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for packaging==23.1
Best match: packaging 23.1
Adding packaging 23.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for fonttools==4.39.3
Best match: fonttools 4.39.3
Adding fonttools 4.39.3 to easy-install.pth file
Installing fonttools script to /home/hkim/anaconda3/envs/weis-env/bin
Installing pyftmerge script to /home/hkim/anaconda3/envs/weis-env/bin
Installing pyftsubset script to /home/hkim/anaconda3/envs/weis-env/bin
Installing ttx script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for pyparsing==3.0.9
Best match: pyparsing 3.0.9
Adding pyparsing 3.0.9 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for contourpy==1.0.7
Best match: contourpy 1.0.7
Adding contourpy 1.0.7 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for cycler==0.11.0
Best match: cycler 0.11.0
Adding cycler 0.11.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for kiwisolver==1.4.4
Best match: kiwisolver 1.4.4
Adding kiwisolver 1.4.4 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for Pillow==9.5.0
Best match: Pillow 9.5.0
Adding Pillow 9.5.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for python-dateutil==2.8.2
Best match: python-dateutil 2.8.2
Adding python-dateutil 2.8.2 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for tzdata==2023.3
Best match: tzdata 2023.3
Adding tzdata 2023.3 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for pytz==2023.3
Best match: pytz 2023.3
Adding pytz 2023.3 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for six==1.16.0
Best match: six 1.16.0
Adding six 1.16.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Finished processing dependencies for pCrunch==1.0.0
['None', 'setup', 'meson_build', '--prefix=/home/hkim/WEIS/pyHAMS/meson_build', '-Dpython.purelibdir=.', '-Dpython.platlibdir=.']
Traceback (most recent call last):
File "/home/hkim/WEIS/pyHAMS/setup.py", line 90, in <module>
run_meson_build(staging_dir)
File "/home/hkim/WEIS/pyHAMS/setup.py", line 38, in run_meson_build
p1 = subprocess.run(sysargs, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
File "/home/hkim/anaconda3/envs/weis-env/lib/python3.10/subprocess.py", line 503, in run
with Popen(*popenargs, **kwargs) as process:
File "/home/hkim/anaconda3/envs/weis-env/lib/python3.10/subprocess.py", line 971, in __init__
self._execute_child(args, executable, preexec_fn, close_fds,
File "/home/hkim/anaconda3/envs/weis-env/lib/python3.10/subprocess.py", line 1847, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'None'
running develop
running egg_info
creating MoorPy.egg-info
writing MoorPy.egg-info/PKG-INFO
writing dependency_links to MoorPy.egg-info/dependency_links.txt
writing requirements to MoorPy.egg-info/requires.txt
writing top-level names to MoorPy.egg-info/top_level.txt
writing manifest file 'MoorPy.egg-info/SOURCES.txt'
reading manifest file 'MoorPy.egg-info/SOURCES.txt'
writing manifest file 'MoorPy.egg-info/SOURCES.txt'
running build_ext
Creating /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/MoorPy.egg-link (link to .)
Adding MoorPy 0.9.0 to easy-install.pth file
Installed /home/hkim/WEIS/MoorPy
Processing dependencies for MoorPy==0.9.0
Searching for PyYAML==6.0
Best match: PyYAML 6.0
Adding PyYAML 6.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for matplotlib==3.7.1
Best match: matplotlib 3.7.1
Adding matplotlib 3.7.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for numpy==1.23.1
Best match: numpy 1.23.1
Adding numpy 1.23.1 to easy-install.pth file
Installing f2py script to /home/hkim/anaconda3/envs/weis-env/bin
Installing f2py3 script to /home/hkim/anaconda3/envs/weis-env/bin
Installing f2py3.10 script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for packaging==23.1
Best match: packaging 23.1
Adding packaging 23.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for fonttools==4.39.3
Best match: fonttools 4.39.3
Adding fonttools 4.39.3 to easy-install.pth file
Installing fonttools script to /home/hkim/anaconda3/envs/weis-env/bin
Installing pyftmerge script to /home/hkim/anaconda3/envs/weis-env/bin
Installing pyftsubset script to /home/hkim/anaconda3/envs/weis-env/bin
Installing ttx script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for pyparsing==3.0.9
Best match: pyparsing 3.0.9
Adding pyparsing 3.0.9 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for contourpy==1.0.7
Best match: contourpy 1.0.7
Adding contourpy 1.0.7 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for cycler==0.11.0
Best match: cycler 0.11.0
Adding cycler 0.11.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for kiwisolver==1.4.4
Best match: kiwisolver 1.4.4
Adding kiwisolver 1.4.4 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for Pillow==9.5.0
Best match: Pillow 9.5.0
Adding Pillow 9.5.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for python-dateutil==2.8.2
Best match: python-dateutil 2.8.2
Adding python-dateutil 2.8.2 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for six==1.16.0
Best match: six 1.16.0
Adding six 1.16.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Finished processing dependencies for MoorPy==0.9.0
running develop
running egg_info
creating RAFT.egg-info
writing RAFT.egg-info/PKG-INFO
writing dependency_links to RAFT.egg-info/dependency_links.txt
writing top-level names to RAFT.egg-info/top_level.txt
writing manifest file 'RAFT.egg-info/SOURCES.txt'
reading manifest file 'RAFT.egg-info/SOURCES.txt'
adding license file 'LICENSE'
adding license file 'NOTICE.txt'
writing manifest file 'RAFT.egg-info/SOURCES.txt'
running build_ext
Creating /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/RAFT.egg-link (link to .)
Adding RAFT 0.1 to easy-install.pth file
Installed /home/hkim/WEIS/RAFT
Processing dependencies for RAFT==0.1
Finished processing dependencies for RAFT==0.1
running develop
running egg_info
creating dtqpy.egg-info
writing dtqpy.egg-info/PKG-INFO
writing dependency_links to dtqpy.egg-info/dependency_links.txt
writing requirements to dtqpy.egg-info/requires.txt
writing top-level names to dtqpy.egg-info/top_level.txt
writing manifest file 'dtqpy.egg-info/SOURCES.txt'
reading manifest file 'dtqpy.egg-info/SOURCES.txt'
writing manifest file 'dtqpy.egg-info/SOURCES.txt'
running build_ext
Creating /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/dtqpy.egg-link (link to .)
Adding dtqpy 0.0.1 to easy-install.pth file
Installed /home/hkim/WEIS/dtqpy
Processing dependencies for dtqpy==0.0.1
Searching for osqp==0.6.2.post0
Best match: osqp 0.6.2.post0
Adding osqp 0.6.2.post0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for mat4py==0.5.0
Best match: mat4py 0.5.0
Adding mat4py 0.5.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for matplotlib==3.7.1
Best match: matplotlib 3.7.1
Adding matplotlib 3.7.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for scipy==1.10.1
Best match: scipy 1.10.1
Adding scipy 1.10.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for numpy==1.23.1
Best match: numpy 1.23.1
Adding numpy 1.23.1 to easy-install.pth file
Installing f2py script to /home/hkim/anaconda3/envs/weis-env/bin
Installing f2py3 script to /home/hkim/anaconda3/envs/weis-env/bin
Installing f2py3.10 script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for qdldl==0.1.5.post2
Best match: qdldl 0.1.5.post2
Adding qdldl 0.1.5.post2 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for packaging==23.1
Best match: packaging 23.1
Adding packaging 23.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for fonttools==4.39.3
Best match: fonttools 4.39.3
Adding fonttools 4.39.3 to easy-install.pth file
Installing fonttools script to /home/hkim/anaconda3/envs/weis-env/bin
Installing pyftmerge script to /home/hkim/anaconda3/envs/weis-env/bin
Installing pyftsubset script to /home/hkim/anaconda3/envs/weis-env/bin
Installing ttx script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for pyparsing==3.0.9
Best match: pyparsing 3.0.9
Adding pyparsing 3.0.9 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for contourpy==1.0.7
Best match: contourpy 1.0.7
Adding contourpy 1.0.7 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for cycler==0.11.0
Best match: cycler 0.11.0
Adding cycler 0.11.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for kiwisolver==1.4.4
Best match: kiwisolver 1.4.4
Adding kiwisolver 1.4.4 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for Pillow==9.5.0
Best match: Pillow 9.5.0
Adding Pillow 9.5.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for python-dateutil==2.8.2
Best match: python-dateutil 2.8.2
Adding python-dateutil 2.8.2 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for six==1.16.0
Best match: six 1.16.0
Adding six 1.16.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Finished processing dependencies for dtqpy==0.0.1
running develop
running build_scripts
running egg_info
running build_src
INFO: build_src
INFO: building extension "rosco" sources
INFO: building extension "openfast" sources
INFO: build_src: building npy-pkg config files
creating WEIS.egg-info
writing WEIS.egg-info/PKG-INFO
writing dependency_links to WEIS.egg-info/dependency_links.txt
writing requirements to WEIS.egg-info/requires.txt
writing top-level names to WEIS.egg-info/top_level.txt
writing manifest file 'WEIS.egg-info/SOURCES.txt'
/home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/setuptools/command/egg_info.py:624: SetuptoolsDeprecationWarning: Custom 'build_py' does not implement 'get_data_files_without_manifest'.
Please extend command classes from setuptools instead of distutils.
warnings.warn(
reading manifest file 'WEIS.egg-info/SOURCES.txt'
adding license file 'LICENSE'
writing manifest file 'WEIS.egg-info/SOURCES.txt'
running build_ext
INFO: customize UnixCCompiler
INFO: customize UnixCCompiler using CMakeBuildExt
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-march=native)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
creating /tmp/tmpunsgctsv/home
creating /tmp/tmpunsgctsv/home/hkim
creating /tmp/tmpunsgctsv/home/hkim/anaconda3
creating /tmp/tmpunsgctsv/home/hkim/anaconda3/envs
creating /tmp/tmpunsgctsv/home/hkim/anaconda3/envs/weis-env
creating /tmp/tmpunsgctsv/home/hkim/anaconda3/envs/weis-env/lib
creating /tmp/tmpunsgctsv/home/hkim/anaconda3/envs/weis-env/lib/python3.10
creating /tmp/tmpunsgctsv/home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
creating /tmp/tmpunsgctsv/home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/numpy
creating /tmp/tmpunsgctsv/home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/numpy/distutils
creating /tmp/tmpunsgctsv/home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/numpy/distutils/checks
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-march=native'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-O3)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-O3'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-Werror)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-Werror'
INFO: CCompilerOpt.__init__[1782] : check requested baseline
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-msse)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-msse2)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse2'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'SSE' with flags (-msse -msse2)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -Werror'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'SSE2' with flags (-msse -msse2)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -Werror'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-msse3)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse3'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'SSE3' with flags (-msse -msse2 -msse3)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -Werror'
INFO: CCompilerOpt.__init__[1791] : check requested dispatch-able features
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mssse3)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mssse3'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-msse4.1)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse4.1'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mpopcnt)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mpopcnt'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'POPCNT' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -Werror'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-msse4.2)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse4.2'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'SSE42' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -Werror'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'SSE41' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -Werror'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'SSSE3' with flags (-msse -msse2 -msse3 -mssse3)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -Werror'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mavx)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mavx'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'AVX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -Werror'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mf16c)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mf16c'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mfma)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mfma'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mavx2)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mavx2'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mavx512f -mno-mmx)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mavx512f -mno-mmx'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mavx512cd)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mavx512cd'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'AVX512CD' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -Werror'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'F16C' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -Werror'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'AVX512F' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -Werror'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'FMA3' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -Werror'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'AVX2' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mavx2)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mavx2 -Werror'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mavx512er -mavx512pf)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mavx512er -mavx512pf'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'AVX512_KNL' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512er -mavx512pf)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512er -mavx512pf -Werror'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mavx512vl -mavx512bw -mavx512dq)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mavx512vl -mavx512bw -mavx512dq'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'AVX512_SKX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512vl -mavx512bw -mavx512dq)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512vl -mavx512bw -mavx512dq -Werror'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mavx512vnni)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mavx512vnni'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'AVX512_CLX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni -Werror'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'AVX512_KNM' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512er -mavx512pf -mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512er -mavx512pf -mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq -Werror'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mavx512ifma -mavx512vbmi)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mavx512ifma -mavx512vbmi'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'AVX512_CNL' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512ifma -mavx512vbmi)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512ifma -mavx512vbmi -Werror'
INFO: CCompilerOpt.cc_test_flags[1073] : testing flags (-mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq'
INFO: CCompilerOpt.feature_test[1547] : testing feature 'AVX512_ICL' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni -mavx512ifma -mavx512vbmi -mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni -mavx512ifma -mavx512vbmi -mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq -Werror'
INFO: CCompilerOpt.__init__[1803] : skip features (SSE2 SSE3 SSE) since its part of baseline
INFO: CCompilerOpt.__init__[1807] : initialize targets groups
INFO: CCompilerOpt.__init__[1809] : parse target group simd_test
INFO: CCompilerOpt._parse_target_tokens[2020] : skip targets (FMA4 ASIMD VX VSX2 VSX4 XOP VXE2 VXE VSX3 NEON VSX) not part of baseline or dispatch-able features
INFO: CCompilerOpt._parse_policy_not_keepbase[2132] : skip baseline features (SSE2)
INFO: CCompilerOpt.generate_dispatch_header[2353] : generate CPU dispatch header: (build/src.linux-x86_64-3.10/numpy/distutils/include/npy_cpu_dispatch_config.h)
WARN: CCompilerOpt.generate_dispatch_header[2362] : dispatch header dir build/src.linux-x86_64-3.10/numpy/distutils/include does not exist, creating it
INFO: CCompilerOpt.feature_extra_checks[1627] : Testing extra checks for feature 'AVX512F' (AVX512F_REDUCE)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -Werror'
INFO: CCompilerOpt.feature_extra_checks[1627] : Testing extra checks for feature 'AVX512_SKX' (AVX512BW_MASK AVX512DQ_MASK)
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512vl -mavx512bw -mavx512dq -Werror'
INFO: C compiler: gcc -pthread -B /home/hkim/anaconda3/envs/weis-env/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC -O2 -isystem /home/hkim/anaconda3/envs/weis-env/include -fPIC
INFO: compile options: '-I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -I/home/hkim/anaconda3/envs/weis-env/include/python3.10 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mno-mmx -mavx512cd -mavx512vl -mavx512bw -mavx512dq -Werror'
cmake --version
cmake version 3.26.3
CMake suite maintained and supported by Kitware (kitware.com/cmake).
cmake -S /home/hkim/WEIS/ROSCO/ROSCO -B build/temp.linux-x86_64-3.10_rosco -DBUILD_SHARED_LIBS=ON -DDOUBLE_PRECISION:BOOL=OFF -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_INSTALL_PREFIX=/home/hkim/WEIS/local -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_Fortran_FLAGS_RELWITHDEBINFO=-march=native -mtune=native -DCMAKE_C_FLAGS_RELWITHDEBINFO=-march=native -mtune=native -DCMAKE_CXX_FLAGS_RELWITHDEBINFO=-march=native -mtune=native
-- The Fortran compiler identification is GNU 11.3.0
-- The C compiler identification is GNU 11.3.0
-- Detecting Fortran compiler ABI info
-- Detecting Fortran compiler ABI info - done
-- Check for working Fortran compiler: /usr/bin/f95 - skipped
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- CMAKE_Fortran_COMPILER_ID = GNU
-- Setting system file as: src/SysFiles/SysGnuLinux.f90
-- Configuring done (7.6s)
-- Generating done (0.1s)
CMake Warning:
Manually-specified variables were not used by the project:
CMAKE_CXX_FLAGS_RELWITHDEBINFO
DOUBLE_PRECISION
-- Build files have been written to: /home/hkim/WEIS/build/temp.linux-x86_64-3.10_rosco
cmake --build build/temp.linux-x86_64-3.10_rosco -j 64 --target install --config RELWITHDEBINFO
[ 7%] Building Fortran object CMakeFiles/discon.dir/src/Constants.f90.o
[ 14%] Building Fortran object CMakeFiles/discon.dir/src/ROSCO_Types.f90.o
[ 21%] Building Fortran object CMakeFiles/discon.dir/src/Filters.f90.o
[ 28%] Building Fortran object CMakeFiles/discon.dir/src/Functions.f90.o
[ 35%] Building Fortran object CMakeFiles/discon.dir/src/SysFiles/SysGnuLinux.f90.o
[ 42%] Building Fortran object CMakeFiles/discon.dir/src/ZeroMQInterface.f90.o
[ 50%] Building Fortran object CMakeFiles/discon.dir/src/ROSCO_Helpers.f90.o
[ 57%] Building Fortran object CMakeFiles/discon.dir/src/ExtControl.f90.o
[ 64%] Building Fortran object CMakeFiles/discon.dir/src/ControllerBlocks.f90.o
[ 71%] Building Fortran object CMakeFiles/discon.dir/src/Controllers.f90.o
[ 78%] Building Fortran object CMakeFiles/discon.dir/src/ReadSetParameters.f90.o
[ 85%] Building Fortran object CMakeFiles/discon.dir/src/ROSCO_IO.f90.o
[ 92%] Building Fortran object CMakeFiles/discon.dir/src/DISCON.F90.o
[100%] Linking Fortran shared library libdiscon.so
[100%] Built target discon
Install the project...
-- Install configuration: "RelWithDebInfo"
-- Installing: /home/hkim/WEIS/local/lib/libdiscon.so
cmake --version
cmake version 3.26.3
CMake suite maintained and supported by Kitware (kitware.com/cmake).
cmake -S /home/hkim/WEIS/OpenFAST -B build/temp.linux-x86_64-3.10_rosco_openfast -DBUILD_SHARED_LIBS=ON -DDOUBLE_PRECISION:BOOL=OFF -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_INSTALL_PREFIX=/home/hkim/WEIS/local -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_Fortran_FLAGS_RELWITHDEBINFO=-march=native -mtune=native -DCMAKE_C_FLAGS_RELWITHDEBINFO=-march=native -mtune=native -DCMAKE_CXX_FLAGS_RELWITHDEBINFO=-march=native -mtune=native
-- The CXX compiler identification is GNU 11.3.0
-- The C compiler identification is GNU 11.3.0
-- The Fortran compiler identification is GNU 11.3.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting Fortran compiler ABI info
-- Detecting Fortran compiler ABI info - done
-- Check for working Fortran compiler: /usr/bin/gfortran - skipped
-- Performing Test HAS_FORTRAN2008
-- Performing Test HAS_FORTRAN2008 - Success
-- Enabling Fortran 2008 features
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - not found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - found
-- Found BLAS: /usr/lib/x86_64-linux-gnu/libblas.so
-- Looking for Fortran cheev
-- Looking for Fortran cheev - not found
-- Looking for Fortran cheev
-- Looking for Fortran cheev - found
-- Found LAPACK: /usr/lib/x86_64-linux-gnu/liblapack.so;/usr/lib/x86_64-linux-gnu/libblas.so
-- Setting system file as: src/SysGnuLinux.f90
-- Configuring done (30.7s)
-- Generating done (4.0s)
-- Build files have been written to: /home/hkim/WEIS/build/temp.linux-x86_64-3.10_rosco_openfast
cmake --build build/temp.linux-x86_64-3.10_rosco_openfast -j 64 --target install --config RELWITHDEBINFO
[ 1%] Building Fortran object modules/supercontroller/CMakeFiles/sclib.dir/src/SC_DLL.F90.o
[ 1%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/SingPrec.f90.o
[ 1%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/Polynomial/quartic.f90.o
[ 1%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/fftpack/fftpack4.1.f.o
[ 2%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/scalapack/dlasrt2.f.o
[ 2%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/scalapack/slasrt2.f.o
[ 3%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/dqk61.f.o
[ 3%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/qk61.f.o
[ 3%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/d1mach.f.o
[ 3%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/r1mach.f.o
[ 4%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/xercnt.f.o
[ 4%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/xerhlt.f.o
/home/hkim/WEIS/OpenFAST/modules/nwtc-library/src/NetLib/fftpack/fftpack4.1.f:50:72:
50 | IF (J-4) 102,102,103
| 1
Warning: Fortran 2018 deleted feature: Arithmetic IF statement at (1)
[ 4%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/xerprn.f.o
[ 4%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/fdump.f.o
/home/hkim/WEIS/OpenFAST/modules/nwtc-library/src/NetLib/fftpack/fftpack4.1.f:56:72:
56 | IF (NR) 101,105,101
| 1
Warning: Fortran 2018 deleted feature: Arithmetic IF statement at (1)
[ 5%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/xersve.f.o
[ 5%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/xgetua.f.o
[ 5%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/xermsg.f.o
[ 5%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/i1mach.f.o
[ 6%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/j4save.f.o
/home/hkim/WEIS/OpenFAST/modules/nwtc-library/src/NetLib/fftpack/fftpack4.1.f:241:72:
241 | IF (IDO-2) 107,105,102
| 1
Warning: Fortran 2018 deleted feature: Arithmetic IF statement at (1)
/home/hkim/WEIS/OpenFAST/modules/nwtc-library/src/NetLib/fftpack/fftpack4.1.f:318:72:
318 | IF (IDO-2) 107,105,102
| 1
Warning: Fortran 2018 deleted feature: Arithmetic IF statement at (1)
/home/hkim/WEIS/OpenFAST/modules/nwtc-library/src/NetLib/fftpack/fftpack4.1.f:696:72:
696 | IF (N-2) 106,101,102
| 1
Warning: Fortran 2018 deleted feature: Arithmetic IF statement at (1)
/home/hkim/WEIS/OpenFAST/modules/nwtc-library/src/NetLib/fftpack/fftpack4.1.f:873:72:
873 | IF (IDO-2) 107,105,102
| 1
Warning: Fortran 2018 deleted feature: Arithmetic IF statement at (1)
/home/hkim/WEIS/OpenFAST/modules/nwtc-library/src/NetLib/fftpack/fftpack4.1.f:946:72:
946 | IF (IDO-2) 107,105,102
| 1
Warning: Fortran 2018 deleted feature: Arithmetic IF statement at (1)
/home/hkim/WEIS/OpenFAST/modules/nwtc-library/src/NetLib/fftpack/fftpack4.1.f:1326:72:
1326 | IF (N-2) 101,102,103
| 1
Warning: Fortran 2018 deleted feature: Arithmetic IF statement at (1)
/home/hkim/WEIS/OpenFAST/modules/nwtc-library/src/NetLib/fftpack/fftpack4.1.f:1404:72:
1404 | IF (J-4) 102,102,103
| 1
Warning: Fortran 2018 deleted feature: Arithmetic IF statement at (1)
/home/hkim/WEIS/OpenFAST/modules/nwtc-library/src/NetLib/fftpack/fftpack4.1.f:1410:72:
1410 | IF (NR) 101,105,101
| 1
Warning: Fortran 2018 deleted feature: Arithmetic IF statement at (1)
[ 6%] Linking Fortran shared library libsclib.so
[ 6%] Built target sclib
[ 7%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NWTC_Base.f90.o
[ 8%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/ranlux/RANLUX.f90.o
[ 10%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/SysGnuLinux.f90.o
[ 10%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/lapack/NWTC_LAPACK.f90.o
[ 10%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/scalapack/NWTC_ScaLAPACK.f90.o
[ 10%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/slatec/NWTC_SLATEC.f90.o
[ 11%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NWTC_Library_Types.f90.o
[ 11%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NWTC_IO.f90.o
[ 11%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/JSON.f90.o
[ 12%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NWTC_Num.f90.o
[ 12%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/VTK.f90.o
[ 12%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/YAML.f90.o
[ 12%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NWTC_RandomNumber.f90.o
[ 12%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/ModMesh_Types.f90.o
[ 13%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/ModMesh.f90.o
[ 13%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/ModMesh_Mapping.f90.o
[ 13%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NWTC_Library.f90.o
[ 13%] Building Fortran object modules/nwtc-library/CMakeFiles/nwtclibs.dir/src/NetLib/fftpack/NWTC_FFTPACK.f90.o
[ 13%] Linking Fortran shared library libnwtclibs.so
[ 13%] Built target nwtclibs
[ 13%] Building Fortran object modules/version/CMakeFiles/versioninfolib.dir/src/VersionInfo.f90.o
[ 14%] Building Fortran object modules/aerodyn/CMakeFiles/afinfolib.dir/src/AirfoilInfo_Types.f90.o
[ 15%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_4Dext_Types.f90.o
[ 15%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_FFWind_Base_Types.f90.o
[ 15%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_UniformWind_Types.f90.o
[ 15%] Building Fortran object modules/openfoam/CMakeFiles/openfoamtypeslib.dir/src/OpenFOAM_Types.f90.o
[ 16%] Building Fortran object modules/supercontroller/CMakeFiles/scdataextypeslib.dir/src/SCDataEx_Types.f90.o
[ 16%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_UserWind_Types.f90.o
[ 17%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/Lidar_Types.f90.o
[ 17%] Building Fortran object modules/supercontroller/CMakeFiles/sctypeslib.dir/src/SuperController_Types.f90.o
[ 17%] Building Fortran object modules/orcaflex-interface/CMakeFiles/orcaflexlib.dir/src/OrcaFlexInterface_Types.f90.o
[ 17%] Building Fortran object modules/map/CMakeFiles/mapcpplib.dir/src/MAP_Fortran_Types.f90.o
[ 17%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/cminpack/enorm.c.o
[ 17%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/cminpack/dpmpar.c.o
[ 18%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/cminpack/lmpar.c.o
[ 18%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/cminpack/enorm_u.c.o
[ 19%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/bstring/bstraux.c.o
[ 19%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/cminpack/lmder.c.o
[ 19%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/bstring/bstrlib.c.o
[ 19%] Building CXX object modules/map/CMakeFiles/mapcpplib.dir/src/lmroutines.cc.o
[ 20%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/cminpack/qrsolv.c.o
[ 20%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/freedata.c.o
[ 20%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/jacobian.c.o
[ 20%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/lineroutines.c.o
[ 20%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/maperror.c.o
[ 21%] Building Fortran object modules/feamooring/CMakeFiles/feamlib.dir/src/FEAMooring_Types.f90.o
[ 21%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/residual.c.o
[ 21%] Building Fortran object modules/extptfm/CMakeFiles/extptfm_mckflib.dir/src/ExtPtfm_MCKF_Types.f90.o
[ 22%] Building Fortran object modules/beamdyn/CMakeFiles/beamdynlib.dir/src/BeamDyn_Types.f90.o
[ 22%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/mapinit.c.o
[ 22%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/simclist/simclist.c.o
[ 24%] Building Fortran object modules/wakedynamics/CMakeFiles/wdlib.dir/src/WakeDynamics_Types.f90.o
[ 24%] Building Fortran object modules/icedyn/CMakeFiles/icedynlib.dir/src/IceDyn_Types.f90.o
[ 24%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/mapapi.c.o
[ 26%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/numeric.c.o
[ 26%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/outputstream.c.o
[ 26%] Building C object modules/map/CMakeFiles/mapcpplib.dir/src/cminpack/qrfac.c.o
[ 26%] Building Fortran object modules/servodyn/CMakeFiles/servodynlib.dir/src/StrucCtrl_Types.f90.o
[ 27%] Building Fortran object modules/servodyn/CMakeFiles/servodynlib.dir/src/UserVSCont_KP.f90.o
[ 27%] Building Fortran object modules/servodyn/CMakeFiles/servodynlib.dir/src/PitchCntrl_ACH.f90.o
[ 27%] Building Fortran object modules/servodyn/CMakeFiles/servodynlib.dir/src/UserSubs.f90.o
[ 27%] Building Fortran object modules/subdyn/CMakeFiles/subdynlib.dir/src/SubDyn_Output_Params.f90.o
[ 27%] Building Fortran object modules/subdyn/CMakeFiles/subdynlib.dir/src/FEM.f90.o
[ 27%] Building Fortran object modules/subdyn/CMakeFiles/subdynlib.dir/src/SubDyn_Types.f90.o
[ 28%] Building Fortran object modules/moordyn/CMakeFiles/moordynlib.dir/src/MoorDyn_Types.f90.o
[ 29%] Linking Fortran shared library libversioninfolib.so
[ 30%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/Conv_Radiation_Types.f90.o
[ 30%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/WAMIT2_Types.f90.o
[ 30%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/Current_Types.f90.o
[ 31%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/Morison_Types.f90.o
[ 31%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/SS_Radiation_Types.f90.o
[ 31%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/SS_Excitation_Types.f90.o
[ 32%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/Waves2_Types.f90.o
[ 32%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/WAMIT_Interp.f90.o
[ 32%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/Waves_Types.f90.o
[ 32%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_BladedFFWind_Types.f90.o
[ 33%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_FFWind_Base.f90.o
[ 33%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_TSFFWind_Types.f90.o
[ 34%] Linking Fortran shared library libscdataextypeslib.so
[ 34%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_HAWCWind_Types.f90.o
[ 35%] Linking Fortran shared library libsctypeslib.so
[ 35%] Linking Fortran shared library libopenfoamtypeslib.so
[ 35%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_UserWind.f90.o
[ 35%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_4Dext.f90.o
[ 36%] Building Fortran object modules/orcaflex-interface/CMakeFiles/orcaflexlib.dir/src/OrcaFlexInterface.f90.o
[ 36%] Building Fortran object modules/map/CMakeFiles/mapcpplib.dir/src/MAP_Types.f90.o
[ 36%] Building Fortran object modules/aerodyn/CMakeFiles/afinfolib.dir/src/AirfoilInfo.f90.o
/home/hkim/WEIS/OpenFAST/modules/orcaflex-interface/src/OrcaFlexInterface.f90:756:66:
756 | CALL C_F_PROCPOINTER( p%DLL_Orca%ProcAddr(2), OrcaDLL_Calc )
| 1
Warning: ‘stdcall’ attribute ignored [-Wattributes]
/home/hkim/WEIS/OpenFAST/modules/orcaflex-interface/src/OrcaFlexInterface.f90:627:62:
627 | CALL C_F_PROCPOINTER( p%DLL_Orca%ProcAddr(3), OrcaDLL_End )
| 1
Warning: ‘stdcall’ attribute ignored [-Wattributes]
/home/hkim/WEIS/OpenFAST/modules/orcaflex-interface/src/OrcaFlexInterface.f90:299:63:
299 | CALL C_F_PROCPOINTER( p%DLL_Orca%ProcAddr(1), OrcaDLL_Init )
| 1
Warning: ‘stdcall’ attribute ignored [-Wattributes]
[ 36%] Built target versioninfolib
[ 37%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/Conv_Radiation.f90.o
[ 37%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/Current.f90.o
[ 37%] Building Fortran object modules/icedyn/CMakeFiles/icedynlib.dir/src/IceDyn.f90.o
[ 37%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/SS_Excitation.f90.o
[ 37%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/SS_Radiation.f90.o
[ 37%] Built target scdataextypeslib
[ 37%] Built target sctypeslib
[ 38%] Building Fortran object modules/servodyn/CMakeFiles/servodynlib.dir/src/ServoDyn_Types.f90.o
[ 39%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/UserWaves.f90.o
[ 40%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/WAMIT_Types.f90.o
[ 40%] Building Fortran object modules/servodyn/CMakeFiles/servodynlib.dir/src/StrucCtrl.f90.o
[ 40%] Building Fortran object modules/extptfm/CMakeFiles/extptfm_mckflib.dir/src/ExtPtfm_MCKF_IO.f90.o
[ 40%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/InflowWind_Types.f90.o
[ 41%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_BladedFFWind.f90.o
[ 41%] Linking Fortran shared library libafinfolib.so
[ 42%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_TSFFWind.f90.o
[ 42%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/Waves2_Output.f90.o
[ 42%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_HAWCWind.f90.o
[ 42%] Building Fortran object modules/wakedynamics/CMakeFiles/wdlib.dir/src/WakeDynamics.f90.o
[ 43%] Building Fortran object modules/feamooring/CMakeFiles/feamlib.dir/src/FEAM.f90.o
[ 43%] Built target openfoamtypeslib
[ 43%] Linking Fortran shared library liborcaflexlib.so
[ 44%] Linking CXX shared library libmapcpplib.so
[ 44%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/IfW_UniformWind.f90.o
[ 44%] Linking Fortran shared library libicedynlib.so
[ 44%] Building Fortran object modules/moordyn/CMakeFiles/moordynlib.dir/src/MoorDyn_IO.f90.o
[ 45%] Building Fortran object modules/turbsim/CMakeFiles/turbsim.dir/src/BlankModVKM.f90.o
[ 45%] Building Fortran object modules/turbsim/CMakeFiles/turbsim.dir/src/TurbSim_Types.f90.o
[ 45%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/icefloe/IceFloe_Types.f90.o
[ 46%] Building Fortran object modules/moordyn/CMakeFiles/moordynlib.dir/src/MoorDyn_Misc.f90.o
[ 46%] Building Fortran object modules/turbsim/CMakeFiles/turbsim.dir/src/Root_Searching.f90.o
[ 47%] Building Fortran object modules/subdyn/CMakeFiles/subdynlib.dir/src/IntegerList.f90.o
[ 47%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/icefloe/iceLog.F90.o
[ 47%] Linking Fortran shared library libfeamlib.so
[ 48%] Building Fortran object modules/beamdyn/CMakeFiles/beamdynlib.dir/src/BeamDyn_Subs.f90.o
[ 48%] Built target afinfolib
[ 49%] Linking Fortran shared library libwdlib.so
[ 49%] Built target orcaflexlib
[ 49%] Built target icedynlib
[ 50%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/Waves.f90.o
[ 50%] Built target mapcpplib
[ 50%] Building Fortran object modules/extptfm/CMakeFiles/extptfm_mckflib.dir/src/ExtPtfm_MCKF.f90.o
[ 50%] Building Fortran object modules/turbsim/CMakeFiles/turbsim.dir/src/Profiles.f90.o
[ 51%] Building Fortran object modules/turbsim/CMakeFiles/turbsim.dir/src/RandNum.f90.o
[ 52%] Building Fortran object modules/turbsim/CMakeFiles/turbsim.dir/src/VelocitySpectra.f90.o
[ 52%] Built target feamlib
[ 53%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/icefloe/iceInput.f90.o
[ 53%] Building Fortran object modules/subdyn/CMakeFiles/subdynlib.dir/src/SD_FEM.f90.o
[ 53%] Building Fortran object modules/beamdyn/CMakeFiles/beamdynlib.dir/src/BeamDyn_BldNdOuts_IO.f90.o
[ 53%] Building Fortran object modules/moordyn/CMakeFiles/moordynlib.dir/src/MoorDyn_Line.f90.o
[ 53%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/HydroDyn_Types.f90.o
[ 54%] Building Fortran object modules/aerodyn/CMakeFiles/uaaerolib.dir/src/UnsteadyAero_Types.f90.o
[ 55%] Building Fortran object modules/aerodyn/CMakeFiles/aeroacoustics.dir/src/AeroAcoustics_Types.f90.o
[ 56%] Building Fortran object modules/aerodyn/CMakeFiles/aeroacoustics.dir/src/AeroAcoustics_TNO.f90.o
[ 57%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/InflowWind_Subs.f90.o
[ 57%] Built target wdlib
[ 57%] Linking Fortran shared library libextptfm_mckflib.so
[ 58%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/Morison_Output.f90.o
[ 58%] Building Fortran object modules/orcaflex-interface/CMakeFiles/orca_driver.dir/src/OrcaDriver_Types.f90.o
[ 58%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/WAMIT.f90.o
[ 58%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/WAMIT2.f90.o
[ 58%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/Waves2.f90.o
[ 59%] Building Fortran object modules/map/CMakeFiles/maplib.dir/src/MAP_Fortran_Types.f90.o
[ 59%] Building Fortran object modules/turbsim/CMakeFiles/turbsim.dir/src/CohStructures.f90.o
[ 60%] Building Fortran object modules/turbsim/CMakeFiles/turbsim.dir/src/TSsubs.f90.o
[ 60%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/icefloe/IceFloeBase.F90.o
[ 60%] Building Fortran object modules/feamooring/CMakeFiles/feam_driver.dir/src/FEAM_Driver.f90.o
[ 60%] Building Fortran object modules/moordyn/CMakeFiles/moordynlib.dir/src/MoorDyn_Point.f90.o
[ 60%] Building Fortran object modules/moordyn/CMakeFiles/moordynlib.dir/src/MoorDyn_Rod.f90.o
[ 60%] Building Fortran object modules/beamdyn/CMakeFiles/beamdynlib.dir/src/BeamDyn_IO.f90.o
[ 61%] Building Fortran object modules/subdyn/CMakeFiles/subdynlib.dir/src/SubDyn_Output.f90.o
[ 61%] Building Fortran object modules/subdyn/CMakeFiles/subdynlib.dir/src/SubDyn_Tests.f90.o
[ 61%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/Lidar.f90.o
[ 61%] Built target extptfm_mckflib
[ 61%] Linking Fortran executable feam_driver
[ 62%] Building Fortran object modules/orcaflex-interface/CMakeFiles/orca_driver.dir/src/OrcaDriver_Subs.f90.o
[ 62%] Building Fortran object modules/map/CMakeFiles/maplib.dir/src/MAP_Types.f90.o
[ 62%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/icefloe/IceFlexBase.F90.o
[ 63%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/icefloe/coupledCrushing.F90.o
[ 63%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/icefloe/crushingIEC.F90.o
[ 63%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/icefloe/crushingISO.F90.o
[ 63%] Building Fortran object modules/turbsim/CMakeFiles/turbsim.dir/src/TS_FileIO.f90.o
[ 63%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/Morison.f90.o
[ 63%] Building Fortran object modules/inflowwind/CMakeFiles/ifwlib.dir/src/InflowWind.f90.o
[ 63%] Building Fortran object modules/subdyn/CMakeFiles/subdynlib.dir/src/SubDyn.f90.o
[ 64%] Building Fortran object modules/beamdyn/CMakeFiles/beamdynlib.dir/src/BeamDyn.f90.o
[ 64%] Building Fortran object modules/moordyn/CMakeFiles/moordynlib.dir/src/MoorDyn_Body.f90.o
[ 64%] Building Fortran object modules/aerodyn/CMakeFiles/uaaerolib.dir/src/UnsteadyAero.f90.o
[ 64%] Building Fortran object modules/servodyn/CMakeFiles/servodynlib.dir/src/BladedInterface_EX.f90.o
[ 64%] Building Fortran object modules/servodyn/CMakeFiles/servodynlib.dir/src/ServoDyn_IO.f90.o
[ 64%] Building Fortran object modules/aerodyn/CMakeFiles/aeroacoustics.dir/src/AeroAcoustics_IO.f90.o
[ 64%] Built target feam_driver
[ 64%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/HydroDyn_Output.f90.o
[ 65%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/icefloe/IceFlexIEC.f90.o
[ 65%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/icefloe/IceFlexISO.f90.o
[ 66%] Building Fortran object modules/moordyn/CMakeFiles/moordynlib.dir/src/MoorDyn.f90.o
[ 66%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/icefloe/intermittentCrushing.F90.o
[ 66%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/icefloe/randomCrushing.F90.o
[ 66%] Linking Fortran shared library libifwlib.so
[ 67%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/icefloe/lockInISO.F90.o
[ 67%] Linking Fortran shared library libuaaerolib.so
[ 67%] Building Fortran object modules/orcaflex-interface/CMakeFiles/orca_driver.dir/src/OrcaDriver.f90.o
[ 68%] Building Fortran object modules/servodyn/CMakeFiles/servodynlib.dir/src/BladedInterface.f90.o
[ 68%] Linking Fortran shared library libbeamdynlib.so
[ 68%] Building Fortran object modules/aerodyn/CMakeFiles/aeroacoustics.dir/src/AeroAcoustics.f90.o
[ 68%] Linking Fortran shared library libsubdynlib.so
[ 68%] Building Fortran object modules/map/CMakeFiles/maplib.dir/src/map.f90.o
[ 69%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/HydroDyn_Input.f90.o
[ 69%] Linking Fortran executable orca_driver
[ 69%] Building Fortran object modules/turbsim/CMakeFiles/turbsim.dir/src/TurbSim.f90.o
[ 69%] Building Fortran object modules/icefloe/CMakeFiles/icefloelib.dir/src/interfaces/FAST/IceFloe.f90.o
[ 69%] Linking Fortran shared library libmoordynlib.so
[ 69%] Built target ifwlib
[ 69%] Built target uaaerolib
[ 69%] Linking Fortran shared library libmaplib.so
[ 70%] Building Fortran object modules/servodyn/CMakeFiles/servodynlib.dir/src/ServoDyn.f90.o
[ 70%] Built target beamdynlib
[ 70%] Linking Fortran shared library libaeroacoustics.so
[ 70%] Built target subdynlib
[ 70%] Built target orca_driver
[ 70%] Linking Fortran executable turbsim
[ 70%] Building Fortran object modules/inflowwind/CMakeFiles/inflowwind_driver.dir/src/InflowWind_Driver_Types.f90.o
[ 71%] Building Fortran object modules/aerodyn/CMakeFiles/unsteadyaero_driver.dir/src/UA_Dvr_Subs.f90.o
[ 71%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodynlib.dir/src/HydroDyn.f90.o
[ 71%] Built target moordynlib
[ 71%] Building Fortran object modules/awae/CMakeFiles/awaelib.dir/src/AWAE_Types.f90.o
[ 71%] Building Fortran object modules/inflowwind/CMakeFiles/ifw_c_binding.dir/src/IfW_C_Binding.f90.o
[ 72%] Building Fortran object modules/aerodyn/CMakeFiles/fvwlib.dir/src/FVW_Types.f90.o
[ 72%] Building Fortran object modules/aerodyn/CMakeFiles/fvwlib.dir/src/FVW_BiotSavart.f90.o
[ 73%] Linking Fortran shared library libicefloelib.so
[ 73%] Building Fortran object modules/subdyn/CMakeFiles/subdyn_driver.dir/src/SubDyn_Driver.f90.o
[ 73%] Built target maplib
[ 73%] Building Fortran object modules/aerodyn14/CMakeFiles/aerodyn14lib.dir/src/DWM_Types.f90.o
[ 73%] Built target aeroacoustics
[ 74%] Building Fortran object modules/inflowwind/CMakeFiles/inflowwind_driver.dir/src/InflowWind_Driver_Subs.f90.o
[ 74%] Building Fortran object modules/beamdyn/CMakeFiles/beamdyn_driver.dir/src/Driver_Beam_Subs.f90.o
[ 74%] Building Fortran object modules/aerodyn/CMakeFiles/unsteadyaero_driver.dir/src/UnsteadyAero_Driver.f90.o
[ 74%] Built target turbsim
[ 74%] Linking Fortran shared library libifw_c_binding.so
[ 74%] Building Fortran object modules/moordyn/CMakeFiles/moordyn_driver.dir/src/MoorDyn_Driver.f90.o
[ 75%] Linking Fortran executable subdyn_driver
[ 75%] Building Fortran object modules/moordyn/CMakeFiles/moordyn_c_binding.dir/src/MoorDyn_C_Binding.f90.o
[ 75%] Building Fortran object modules/aerodyn/CMakeFiles/fvwlib.dir/src/FVW_VortexTools.f90.o
[ 75%] Built target icefloelib
[ 75%] Linking Fortran executable unsteadyaero_driver
[ 76%] Building Fortran object modules/beamdyn/CMakeFiles/beamdyn_driver.dir/src/Driver_Beam.f90.o
[ 76%] Built target ifw_c_binding
[ 76%] Built target subdyn_driver
[ 76%] Linking Fortran shared library libservodynlib.so
[ 76%] Linking Fortran shared library libhydrodynlib.so
[ 76%] Built target unsteadyaero_driver
[ 76%] Building Fortran object modules/inflowwind/CMakeFiles/inflowwind_driver.dir/src/InflowWind_Driver.f90.o
[ 76%] Built target servodynlib
[ 77%] Building Fortran object modules/awae/CMakeFiles/awaelib.dir/src/AWAE_IO.f90.o
[ 78%] Linking Fortran shared library libmoordyn_c_binding.so
[ 78%] Linking Fortran executable moordyn_driver
[ 78%] Linking Fortran executable beamdyn_driver
[ 78%] Built target hydrodynlib
[ 78%] Building Fortran object modules/aerodyn14/CMakeFiles/aerodyn14lib.dir/src/AeroDyn14_Types.f90.o
[ 78%] Building Fortran object modules/aerodyn14/CMakeFiles/aerodyn14lib.dir/src/DWM_Wake_Sub_ver2.f90.o
[ 78%] Linking Fortran executable inflowwind_driver
[ 78%] Building Fortran object modules/servodyn/CMakeFiles/servodyn_driver.dir/src/ServoDyn_Driver.f90.o
[ 78%] Built target moordyn_c_binding
[ 78%] Building Fortran object modules/elastodyn/CMakeFiles/elastodynlib.dir/src/ED_UserSubs.f90.o
[ 78%] Building Fortran object modules/elastodyn/CMakeFiles/elastodynlib.dir/src/ElastoDyn_Types.f90.o
[ 78%] Built target moordyn_driver
[ 78%] Building Fortran object modules/awae/CMakeFiles/awaelib.dir/src/AWAE.f90.o
[ 79%] Building Fortran object modules/aerodyn/CMakeFiles/fvwlib.dir/src/FVW_Subs.f90.o
[ 79%] Built target beamdyn_driver
[ 79%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodyn_driver.dir/src/HydroDyn_DriverCode.f90.o
[ 79%] Building Fortran object modules/hydrodyn/CMakeFiles/hydrodyn_c_binding.dir/src/HydroDyn_C_Binding.f90.o
[ 79%] Linking Fortran executable servodyn_driver
[ 79%] Built target inflowwind_driver
[ 79%] Building Fortran object modules/aerodyn14/CMakeFiles/aerodyn14lib.dir/src/DWM.f90.o
[ 79%] Built target servodyn_driver
[ 80%] Linking Fortran shared library libhydrodyn_c_binding.so
[ 80%] Linking Fortran executable hydrodyn_driver
[ 80%] Linking Fortran shared library libawaelib.so
[ 81%] Building Fortran object modules/aerodyn/CMakeFiles/fvwlib.dir/src/FVW_IO.f90.o
[ 81%] Building Fortran object modules/aerodyn/CMakeFiles/fvwlib.dir/src/FVW_Wings.f90.o
[ 81%] Built target hydrodyn_c_binding
[ 81%] Built target hydrodyn_driver
[ 81%] Built target awaelib
[ 81%] Building Fortran object modules/aerodyn/CMakeFiles/fvwlib.dir/src/FVW_Tests.f90.o
[ 82%] Building Fortran object modules/aerodyn14/CMakeFiles/aerodyn14lib.dir/src/GenSubs.f90.o
[ 82%] Building Fortran object modules/aerodyn/CMakeFiles/fvwlib.dir/src/FVW.f90.o
[ 83%] Building Fortran object modules/aerodyn14/CMakeFiles/aerodyn14lib.dir/src/AeroSubs.f90.o
[ 84%] Building Fortran object modules/elastodyn/CMakeFiles/elastodynlib.dir/src/ElastoDyn_AllBldNdOuts_IO.f90.o
[ 84%] Linking Fortran shared library libfvwlib.so
[ 84%] Building Fortran object modules/elastodyn/CMakeFiles/elastodynlib.dir/src/ElastoDyn_IO.f90.o
[ 84%] Building Fortran object modules/aerodyn14/CMakeFiles/aerodyn14lib.dir/src/AeroDyn14.f90.o
[ 84%] Built target fvwlib
[ 84%] Building Fortran object modules/aerodyn/CMakeFiles/aerodynlib.dir/src/DBEMT_Types.f90.o
[ 84%] Building Fortran object modules/elastodyn/CMakeFiles/elastodynlib.dir/src/ElastoDyn.f90.o
[ 85%] Linking Fortran shared library libaerodyn14lib.so
[ 85%] Built target aerodyn14lib
[ 86%] Building Fortran object modules/aerodyn/CMakeFiles/aerodynlib.dir/src/BEMT_Types.f90.o
[ 86%] Building Fortran object modules/aerodyn/CMakeFiles/aerodynlib.dir/src/DBEMT.f90.o
[ 87%] Building Fortran object modules/aerodyn14/CMakeFiles/dwm_driver_wind_farm.dir/src/DWM_driver_wind_farm_mod.f90.o
[ 87%] Building Fortran object modules/aerodyn14/CMakeFiles/dwm_driver_wind_farm.dir/src/DWM_driver_wind_farm_sub.f90.o
[ 87%] Building Fortran object modules/aerodyn14/CMakeFiles/dwm_driver_wind_farm.dir/src/DWM_driver_wind_farm.f90.o
[ 88%] Linking Fortran shared library libelastodynlib.so
[ 89%] Building Fortran object modules/aerodyn/CMakeFiles/aerodynlib.dir/src/AeroDyn_Types.f90.o
[ 89%] Building Fortran object modules/aerodyn/CMakeFiles/aerodynlib.dir/src/BEMTUncoupled.f90.o
[ 90%] Linking Fortran executable dwm_driver_wind_farm
[ 90%] Built target elastodynlib
[ 90%] Built target dwm_driver_wind_farm
[ 90%] Building Fortran object modules/aerodyn/CMakeFiles/aerodynlib.dir/src/mod_root1dim.f90.o
[ 90%] Building Fortran object modules/aerodyn/CMakeFiles/aerodynlib.dir/src/BEMT.f90.o
[ 91%] Building Fortran object modules/aerodyn/CMakeFiles/aerodynlib.dir/src/AeroDyn_AllBldNdOuts_IO.f90.o
[ 91%] Building Fortran object modules/aerodyn/CMakeFiles/aerodynlib.dir/src/AeroDyn_IO.f90.o
[ 91%] Building Fortran object modules/aerodyn/CMakeFiles/aerodynlib.dir/src/AeroDyn.f90.o
[ 91%] Linking Fortran shared library libaerodynlib.so
[ 91%] Built target aerodynlib
[ 91%] Building Fortran object modules/aerodyn/CMakeFiles/adilib.dir/src/AeroDyn_Inflow_Types.f90.o
[ 92%] Building Fortran object modules/openfast-library/CMakeFiles/openfast_prelib.dir/src/FAST_Types.f90.o
[ 92%] Building Fortran object modules/aerodyn/CMakeFiles/adilib.dir/src/AeroDyn_Inflow.f90.o
[ 92%] Linking Fortran shared library libadilib.so
[ 92%] Built target adilib
[ 92%] Building Fortran object modules/aerodyn/CMakeFiles/aerodyn_inflow_c_binding.dir/src/AeroDyn_Inflow_C_Binding.f90.o
[ 93%] Building Fortran object modules/aerodyn/CMakeFiles/aerodyn_driver.dir/src/AeroDyn_Driver_Types.f90.o
[ 94%] Linking Fortran shared library libaerodyn_inflow_c_binding.so
[ 94%] Built target aerodyn_inflow_c_binding
[ 94%] Building Fortran object modules/aerodyn/CMakeFiles/aerodyn_driver.dir/src/AeroDyn_Driver_Subs.f90.o
[ 94%] Building Fortran object modules/aerodyn/CMakeFiles/aerodyn_driver.dir/src/AeroDyn_Driver.f90.o
[ 94%] Linking Fortran executable aerodyn_driver
[ 94%] Built target aerodyn_driver
[ 94%] Linking Fortran shared library libopenfast_prelib.so
[ 94%] Built target openfast_prelib
[ 95%] Building Fortran object modules/supercontroller/CMakeFiles/scdataexlib.dir/src/SC_DataEx.f90.o
[ 95%] Building Fortran object modules/supercontroller/CMakeFiles/scfastlib.dir/src/SuperController.f90.o
[ 96%] Building Fortran object modules/openfoam/CMakeFiles/foamfastlib.dir/src/OpenFOAM.f90.o
[ 96%] Linking Fortran shared library libscfastlib.so
[ 96%] Built target scfastlib
[ 96%] Linking Fortran shared library libscdataexlib.so
[ 96%] Linking Fortran shared library libfoamfastlib.so
[ 96%] Built target scdataexlib
[ 96%] Built target foamfastlib
[ 96%] Building Fortran object modules/openfast-library/CMakeFiles/openfast_postlib.dir/src/FAST_Mods.f90.o
[ 96%] Building Fortran object modules/openfast-library/CMakeFiles/openfast_postlib.dir/src/FAST_Solver.f90.o
[ 96%] Building Fortran object modules/openfast-library/CMakeFiles/openfast_postlib.dir/src/FAST_Lin.f90.o
[ 97%] Building Fortran object modules/openfast-library/CMakeFiles/openfast_postlib.dir/src/FAST_Subs.f90.o
[ 97%] Linking Fortran shared library libopenfast_postlib.so
[ 97%] Built target openfast_postlib
[ 97%] Building Fortran object modules/openfast-library/CMakeFiles/openfastlib.dir/src/FAST_Library.f90.o
[ 97%] Building Fortran object glue-codes/openfast/CMakeFiles/openfast.dir/src/FAST_Prog.f90.o
[ 98%] Linking Fortran executable openfast
[ 98%] Built target openfast
[ 99%] Linking Fortran shared library libopenfastlib.so
[ 99%] Built target openfastlib
[ 99%] Building CXX object glue-codes/openfast/CMakeFiles/openfast_cpp.dir/src/FAST_Prog.cpp.o
[ 99%] Building CXX object glue-codes/openfast/CMakeFiles/openfast_cpp.dir/src/FastLibAPI.cpp.o
[100%] Linking CXX executable openfast_cpp
[100%] Built target openfast_cpp
Install the project...
-- Install configuration: "RelWithDebInfo"
-- Installing: /home/hkim/WEIS/local/lib/cmake/OpenFAST/OpenFASTLibraries.cmake
-- Installing: /home/hkim/WEIS/local/lib/cmake/OpenFAST/OpenFASTLibraries-relwithdebinfo.cmake
-- Installing: /home/hkim/WEIS/local/lib/cmake/OpenFAST/OpenFASTConfig.cmake
-- Installing: /home/hkim/WEIS/local/lib/libnwtclibs.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libnwtclibs.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/bin/inflowwind_driver
-- Set runtime path of "/home/hkim/WEIS/local/bin/inflowwind_driver" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libifwlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libifwlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libifw_c_binding.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libifw_c_binding.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/bin/unsteadyaero_driver
-- Set runtime path of "/home/hkim/WEIS/local/bin/unsteadyaero_driver" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/bin/aerodyn_driver
-- Set runtime path of "/home/hkim/WEIS/local/bin/aerodyn_driver" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libadilib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libadilib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libaerodynlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libaerodynlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libfvwlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libfvwlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libuaaerolib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libuaaerolib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libafinfolib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libafinfolib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libaeroacoustics.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libaeroacoustics.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libaerodyn_inflow_c_binding.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libaerodyn_inflow_c_binding.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libaerodyn14lib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libaerodyn14lib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/bin/dwm_driver_wind_farm
-- Set runtime path of "/home/hkim/WEIS/local/bin/dwm_driver_wind_farm" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libservodynlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libservodynlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/bin/servodyn_driver
-- Set runtime path of "/home/hkim/WEIS/local/bin/servodyn_driver" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libelastodynlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libelastodynlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libbeamdynlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libbeamdynlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/bin/beamdyn_driver
-- Set runtime path of "/home/hkim/WEIS/local/bin/beamdyn_driver" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libsubdynlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libsubdynlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/bin/subdyn_driver
-- Set runtime path of "/home/hkim/WEIS/local/bin/subdyn_driver" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libhydrodynlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libhydrodynlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/bin/hydrodyn_driver
-- Set runtime path of "/home/hkim/WEIS/local/bin/hydrodyn_driver" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libhydrodyn_c_binding.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libhydrodyn_c_binding.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/liborcaflexlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/liborcaflexlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/bin/orca_driver
-- Set runtime path of "/home/hkim/WEIS/local/bin/orca_driver" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libextptfm_mckflib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libextptfm_mckflib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libopenfoamtypeslib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libopenfoamtypeslib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libfoamfastlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libfoamfastlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/include/OpenFOAM_Types.h
-- Installing: /home/hkim/WEIS/local/lib/libsctypeslib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libsctypeslib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libscfastlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libscfastlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libscdataextypeslib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libscdataextypeslib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libscdataexlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libscdataexlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libsclib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libsclib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/include/SuperController_Types.h
-- Installing: /home/hkim/WEIS/local/include/SCDataEx_Types.h
-- Installing: /home/hkim/WEIS/local/bin/turbsim
-- Set runtime path of "/home/hkim/WEIS/local/bin/turbsim" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libopenfastlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libopenfastlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libopenfast_prelib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libopenfast_prelib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libopenfast_postlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libopenfast_postlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/include/FAST_Library.h
-- Installing: /home/hkim/WEIS/local/lib/libversioninfolib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libversioninfolib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libfeamlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libfeamlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/bin/feam_driver
-- Set runtime path of "/home/hkim/WEIS/local/bin/feam_driver" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libmoordynlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libmoordynlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/bin/moordyn_driver
-- Set runtime path of "/home/hkim/WEIS/local/bin/moordyn_driver" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libicedynlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libicedynlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libicefloelib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libicefloelib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libmaplib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libmaplib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libmapcpplib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libmapcpplib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/include/MAP_Types.h
-- Installing: /home/hkim/WEIS/local/lib/libwdlib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libwdlib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/lib/libawaelib.so
-- Set runtime path of "/home/hkim/WEIS/local/lib/libawaelib.so" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/bin/openfast
-- Set runtime path of "/home/hkim/WEIS/local/bin/openfast" to "/home/hkim/WEIS/local/lib"
-- Installing: /home/hkim/WEIS/local/bin/openfast_cpp
-- Set runtime path of "/home/hkim/WEIS/local/bin/openfast_cpp" to "/home/hkim/WEIS/local/lib"
Creating /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/WEIS.egg-link (link to .)
Adding WEIS 1.1 to easy-install.pth file
Installed /home/hkim/WEIS
Processing dependencies for WEIS==1.1
Searching for certifi>=2017.4.17
Reading https://pypi.org/simple/certifi/
/home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/pkg_resources/__init__.py:116: PkgResourcesDeprecationWarning: is an invalid version and will not be supported in a future release
warnings.warn(
Downloading https://files.pythonhosted.org/packages/71/4c/3db2b8021bd6f2f0ceb0e088d6b2d49147671f25832fb17970e9b583d742/certifi-2022.12.7-py3-none-any.whl#sha256=4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18
Best match: certifi 2022.12.7
Processing certifi-2022.12.7-py3-none-any.whl
Installing certifi-2022.12.7-py3-none-any.whl to /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Adding certifi 2022.12.7 to easy-install.pth file
Installed /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/certifi-2022.12.7-py3.10.egg
Searching for fatpack==0.7.7
Best match: fatpack 0.7.7
Adding fatpack 0.7.7 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for jsonmerge==1.9.0
Best match: jsonmerge 1.9.0
Adding jsonmerge 1.9.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for control==0.9.3.post2
Best match: control 0.9.3.post2
Adding control 0.9.3.post2 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for smt==1.3.0
Best match: smt 1.3.0
Adding smt 1.3.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for dill==0.3.6
Best match: dill 0.3.6
Adding dill 0.3.6 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for nlopt==2.7.1
Best match: nlopt 2.7.1
Adding nlopt 2.7.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for scipy==1.10.1
Best match: scipy 1.10.1
Adding scipy 1.10.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for numpy==1.23.1
Best match: numpy 1.23.1
Adding numpy 1.23.1 to easy-install.pth file
Installing f2py script to /home/hkim/anaconda3/envs/weis-env/bin
Installing f2py3 script to /home/hkim/anaconda3/envs/weis-env/bin
Installing f2py3.10 script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for openmdao==3.26.0
Best match: openmdao 3.26.0
Adding openmdao 3.26.0 to easy-install.pth file
Installing openmdao script to /home/hkim/anaconda3/envs/weis-env/bin
Installing reset_notebook script to /home/hkim/anaconda3/envs/weis-env/bin
Installing run_om_test script to /home/hkim/anaconda3/envs/weis-env/bin
Installing webview script to /home/hkim/anaconda3/envs/weis-env/bin
Installing wingproj script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for jsonschema==4.17.3
Best match: jsonschema 4.17.3
Adding jsonschema 4.17.3 to easy-install.pth file
Installing jsonschema script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for matplotlib==3.7.1
Best match: matplotlib 3.7.1
Adding matplotlib 3.7.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for pyDOE2==1.3.0
Best match: pyDOE2 1.3.0
Adding pyDOE2 1.3.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for scikit-learn==1.2.2
Best match: scikit-learn 1.2.2
Adding scikit-learn 1.2.2 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for packaging==23.1
Best match: packaging 23.1
Adding packaging 23.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for requests==2.29.0
Best match: requests 2.29.0
Adding requests 2.29.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for networkx==3.1
Best match: networkx 3.1
Adding networkx 3.1 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for pyrsistent==0.19.3
Best match: pyrsistent 0.19.3
Adding pyrsistent 0.19.3 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for attrs==22.2.0
Best match: attrs 22.2.0
Adding attrs 22.2.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for fonttools==4.39.3
Best match: fonttools 4.39.3
Adding fonttools 4.39.3 to easy-install.pth file
Installing fonttools script to /home/hkim/anaconda3/envs/weis-env/bin
Installing pyftmerge script to /home/hkim/anaconda3/envs/weis-env/bin
Installing pyftsubset script to /home/hkim/anaconda3/envs/weis-env/bin
Installing ttx script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for pyparsing==3.0.9
Best match: pyparsing 3.0.9
Adding pyparsing 3.0.9 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for contourpy==1.0.7
Best match: contourpy 1.0.7
Adding contourpy 1.0.7 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for cycler==0.11.0
Best match: cycler 0.11.0
Adding cycler 0.11.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for kiwisolver==1.4.4
Best match: kiwisolver 1.4.4
Adding kiwisolver 1.4.4 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for Pillow==9.5.0
Best match: Pillow 9.5.0
Adding Pillow 9.5.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for python-dateutil==2.8.2
Best match: python-dateutil 2.8.2
Adding python-dateutil 2.8.2 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for joblib==1.2.0
Best match: joblib 1.2.0
Adding joblib 1.2.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for threadpoolctl==3.1.0
Best match: threadpoolctl 3.1.0
Adding threadpoolctl 3.1.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for charset-normalizer==3.1.0
Best match: charset-normalizer 3.1.0
Adding charset-normalizer 3.1.0 to easy-install.pth file
Installing normalizer script to /home/hkim/anaconda3/envs/weis-env/bin
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for idna==3.4
Best match: idna 3.4
Adding idna 3.4 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for urllib3==1.26.15
Best match: urllib3 1.26.15
Adding urllib3 1.26.15 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Searching for six==1.16.0
Best match: six 1.16.0
Adding six 1.16.0 to easy-install.pth file
Using /home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages
Finished processing dependencies for WEIS==1.1
INFO:
########### EXT COMPILER OPTIMIZATION ###########
INFO: Platform :
Architecture: x64
Compiler : gcc
CPU baseline :
Requested : 'min'
Enabled : SSE SSE2 SSE3
Flags : -msse -msse2 -msse3
Extra checks: none
CPU dispatch :
Requested : 'max -xop -fma4'
Enabled : SSSE3 SSE41 POPCNT SSE42 AVX F16C FMA3 AVX2 AVX512F AVX512CD AVX512_KNL AVX512_KNM AVX512_SKX AVX512_CLX AVX512_CNL AVX512_ICL
Generated : none
INFO: CCompilerOpt.cache_flush[857] : write cache to path -> /home/hkim/WEIS/build/temp.linux-x86_64-3.10/ccompiler_opt_cache_ext.py
(weis-env) hkim@WSS4HZ3291:~/WEIS$ cd examples/
(weis-env) hkim@WSS4HZ3291:~/WEIS/examples$ cd 06_IEA-15-240-RWT/
(weis-env) hkim@WSS4HZ3291:~/WEIS/examples/06_IEA-15-240-RWT$ python weis_driver.py
/home/hkim/anaconda3/envs/weis-env/lib/python3.10/site-packages/pyoptsparse/pyOpt_MPI.py:68: UserWarning: mpi4py could not be imported. mpi4py is required to use the parallel gradient analysis and parallel objective analysis for non-gradient based optimizers. Continuing using a dummy MPI module from pyOptSparse.
warnings.warn(warn)
Traceback (most recent call last):
File "/home/hkim/WEIS/examples/06_IEA-15-240-RWT/weis_driver.py", line 2, in <module>
from weis.glue_code.runWEIS import run_weis
File "/home/hkim/WEIS/weis/glue_code/runWEIS.py", line 4, in <module>
from weis.glue_code.gc_LoadInputs import WindTurbineOntologyPythonWEIS
File "/home/hkim/WEIS/weis/glue_code/gc_LoadInputs.py", line 5, in <module>
import weis.inputs as sch
File "/home/hkim/WEIS/weis/inputs/__init__.py", line 1, in <module>
from weis.inputs.validation import *
File "/home/hkim/WEIS/weis/inputs/validation.py", line 3, in <module>
import wisdem.inputs
ModuleNotFoundError: No module named 'wisdem'
(weis-env) hkim@WSS4HZ3291:~/WEIS/examples/06_IEA-15-240-RWT$
Sorry for the hassle in creating a new environment. Did you create a new environment from the environment file? It looks like meson
wasn't installed, which is necessary for installing some of these other tools. You can try conda install meson
, but a more robust approach might be: conda env update --file environment.yml
. I just went through a did a bit of cleanup on the list of packages to make sure it was up to date, so you can do a git pull
now that you are on the develop
branch to get the latest updates.
@gbarter
Thank you for your time and help. I tried
conda env update --file environment.yml
Now example of weis_driver_TMDs.py in 06_IEA-15-240-RWT works well.
Thank you so much!!
Hello, all
In example 06, If I run python weis_driver.py, it works well, but if I try python weis_driver_TMDs.py, then following errors occur. Can you help me to resolve this problem?
I installed WEIS in my work station following your instructions (Step 1, 2, and 3 on WSL). I am using WSL. In step1, if I write a line as below, an error occurs, so I removed "python=3.9". Without "python=3.9", it works well.
conda env create --name weis-env -f https://raw.githubusercontent.com/WISDEM/WEIS/main/environment.yml python=3.9
->conda env create --name weis-env -f https://raw.githubusercontent.com/WISDEM/WEIS/main/environment.yml
I think the environment is created using python 3.10.
Thank you for your help!