Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/develop' into phase2
Browse files Browse the repository at this point in the history
  • Loading branch information
dzalkind committed Nov 14, 2023
2 parents 1a7e92f + 6f9de45 commit 2b529dc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ WEIS integrates in a unique workflow four models:
Software Model Versions:
Software | Version
--- | ---
OpenFAST | 3.4.0
OpenFAST | 3.5.0
ROSCO | develop ([05d7b3b](https://github.com/NREL/ROSCO/commit/05d7b3b948c12ad40892941b6f92f3b08f5c6894))
WISDEM | develop ([6f15fc9](https://github.com/WISDEM/WISDEM/commit/6f15fc9ed7f7fd1282d32af5518d2ae37dbc9466))

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ dependencies:
- setuptools
- simpy
- slycot
- smt
- sortedcontainers
- sphinx
- sphinxcontrib-applehelp
Expand All @@ -66,6 +65,7 @@ dependencies:
- dearpygui
- marmot-agents
- osqp
- smt
# Needs to be done outside of environment file:
# - m2w64-toolchain # [win]
# - libpython # [win]
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ def build_extension(self, ext):
elif (mycompiler.find('ifort') >= 0 or mycompiler.find('icc') >= 0 or
mycompiler.find('icpc') >= 0):
tune = '-xHost'

elif platform.system() == 'Darwin':
# clang doesn't support -march=native
tune = '-mtune=native'

else:
tune = '-march=native -mtune=native'
Expand Down

0 comments on commit 2b529dc

Please sign in to comment.