make icpc not required for native knl target

This commit is contained in:
Anton Mitrokhin
2015-05-28 06:37:04 +03:00
parent 5a5cb82043
commit a12f3ec84b
2 changed files with 5 additions and 7 deletions

View File

@@ -636,7 +636,7 @@ def validation_run(only, only_targets, reference_branch, number, notify, update,
if options.ispc_build_compiler == "gcc":
stability.compiler_exe = "g++"
# but 'knc/knl' target is supported only by icpc, so set explicitly
if ("knc" in targets[j]) or ("knl-generic" in targets[j]) or ("avx512knl-i32x16" in targets[j]):
if ("knc" in targets[j]) or ("knl-generic" in targets[j]):
stability.compiler_exe = "icpc"
# now set archs for targets
if "generic" in targets[j]: