Skip to content

Commit

Permalink
Reorder parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
isazi committed Sep 17, 2024
1 parent c0d240a commit 62809fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/directives/vector_add_c_openacc.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@
tune_params,
metrics=metrics,
answer=answer,
compiler_options=["-fast", "-acc=gpu"],
compiler="nvc++",
compiler_options=["-fast", "-acc=gpu"],
)
2 changes: 1 addition & 1 deletion examples/directives/vector_add_c_openmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@
tune_params,
metrics=metrics,
answer=answer,
compiler_options=["-fast", "-mp=gpu"],
compiler="nvc++",
compiler_options=["-fast", "-mp=gpu"],
)
2 changes: 1 addition & 1 deletion examples/directives/vector_add_fortran_openacc.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@
tune_params,
metrics=metrics,
answer=answer,
compiler_options=["-fast", "-acc=gpu"],
compiler="nvfortran",
compiler_options=["-fast", "-acc=gpu"],
)

0 comments on commit 62809fa

Please sign in to comment.