Skip to content

Commit

Permalink
cppx blue&gold
Browse files Browse the repository at this point in the history
  • Loading branch information
partouf committed Oct 14, 2023
1 parent 4f7aa54 commit ad18bfc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions bin/lib/nightly_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ class NightlyVersions:
cpp_for_opencl: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
cpp: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
cppx: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
cppx_blue: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
cppx_gold: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
d: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
dart: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
fortran: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
Expand Down Expand Up @@ -46,6 +48,8 @@ def load_ce_properties(self):
[self.cpp_for_opencl, _] = get_properties_compilers_and_libraries("cpp_for_opencl", self.logger, False)
[self.cpp, _] = get_properties_compilers_and_libraries("c++", self.logger, False)
[self.cppx, _] = get_properties_compilers_and_libraries("cppx", self.logger, False)
[self.cppx_blue, _] = get_properties_compilers_and_libraries("cppx_blue", self.logger, False)
[self.cppx_gold, _] = get_properties_compilers_and_libraries("cppx_gold", self.logger, False)
[self.d, _] = get_properties_compilers_and_libraries("d", self.logger, False)
[self.dart, _] = get_properties_compilers_and_libraries("dart", self.logger, False)
[self.fortran, _] = get_properties_compilers_and_libraries("fortran", self.logger, False)
Expand Down Expand Up @@ -111,6 +115,8 @@ def get_compiler_ids(self, exe: str):
self.collect_compiler_ids_for(ids, c_exe, self.cpp_for_opencl)
self.collect_compiler_ids_for(ids, exe, self.cpp)
self.collect_compiler_ids_for(ids, exe, self.cppx)
self.collect_compiler_ids_for(ids, exe, self.cppx_blue)
self.collect_compiler_ids_for(ids, exe, self.cppx_gold)
self.collect_compiler_ids_for(ids, exe, self.d)
self.collect_compiler_ids_for(ids, exe, self.dart)
self.collect_compiler_ids_for(ids, fortran_exe, self.fortran)
Expand Down

0 comments on commit ad18bfc

Please sign in to comment.