Skip to content

Commit

Permalink
Don't use unsupported flag
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilyBourne committed Feb 13, 2024
1 parent 96cc8fc commit 058b03b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/generate_pyccel_config/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ runs:
file=open('pyccel_c_gnu.json','w'))
# Fortran Intel
config = json.load(open('pyccel_fortran_intel.json'))
config['general_flags'].extend(['-O3', '-xHost', '-mavx', '-fast', '-unroll', '-vec', '-simd'])
config['general_flags'].extend(['-O3', '-xHost', '-mavx', '-fast', '-unroll', '-vec'])
print(json.dumps(config, indent=4),
# C Intel
file=open('pyccel_fortran_intel.json','w'))
config = json.load(open('pyccel_c_intel.json'))
config['general_flags'].extend(['-O3', '-xHost', '-mavx', '-fast', '-unroll', '-vec', '-simd'])
config['general_flags'].extend(['-O3', '-xHost', '-mavx', '-fast', '-unroll', '-vec'])
print(json.dumps(config, indent=4),
file=open('pyccel_c_intel.json','w'))
shell: python
Expand Down

0 comments on commit 058b03b

Please sign in to comment.