Skip to content

Commit

Permalink
openmp binary cont.
Browse files Browse the repository at this point in the history
  • Loading branch information
pearce8 authored Nov 19, 2024
1 parent f445477 commit abb29b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/benchpark/openmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class OpenMPExperiment:

class Helper(ExperimentHelper):
def get_helper_name_prefix(self):
return "openmp" if self.spec.satisfies("openmp=oui") else ""
return "openmp" if self.spec.satisfies("openmp") else ""

def get_spack_variants(self):
return "+openmp" if self.spec.satisfies("openmp=oui") else "~openmp"
return "+openmp" if self.spec.satisfies("openmp") else "~openmp"

0 comments on commit abb29b1

Please sign in to comment.