Added default target and also front end and back end targets
This commit is contained in:
parent
eb2cf1698f
commit
058e72d29c
1 changed files with 3 additions and 3 deletions
|
@ -4,9 +4,9 @@
|
||||||
|
|
||||||
class Cray(Architecture):
|
class Cray(Architecture):
|
||||||
priority = 20
|
priority = 20
|
||||||
front_end = None
|
front_end = 'sandybridge'
|
||||||
back_end = None
|
back_end = 'ivybridge'
|
||||||
default = None
|
default = os.environ["CRAY_CPU_TARGET"]
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(Cray, self).__init__('cray')
|
super(Cray, self).__init__('cray')
|
||||||
|
|
Loading…
Reference in a new issue