diff options
author | Dmitry Babokin <dmitry.y.babokin@intel.com> | 2020-02-22 05:24:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-22 14:24:19 +0100 |
commit | cebf6ad536fac5965a812d05bf267b943673c5c3 (patch) | |
tree | 37b31aefa8da138a026216331b82926abad0d58d /lib/compilers/ispc.js | |
parent | 82399d8f942bd1a195aa049eb76a0f2f922162af (diff) | |
download | compiler-explorer-cebf6ad536fac5965a812d05bf267b943673c5c3.tar.gz compiler-explorer-cebf6ad536fac5965a812d05bf267b943673c5c3.zip |
Change default target for ISPC to avx2-i32x8 (#1846)
Diffstat (limited to 'lib/compilers/ispc.js')
-rw-r--r-- | lib/compilers/ispc.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/ispc.js b/lib/compilers/ispc.js index 1d39361ac..d59361b23 100644 --- a/lib/compilers/ispc.js +++ b/lib/compilers/ispc.js @@ -1,4 +1,4 @@ -// Copyright (c) 2017, Matt Godbolt & Rubén Rincón +// Copyright (c) 2017-2020, Matt Godbolt & Rubén Rincón // All rights reserved. // // Redistribution and use in source and binary forms, with or without @@ -27,7 +27,7 @@ const BaseCompiler = require('../base-compiler'), class ISPCCompiler extends BaseCompiler { optionsForFilter(filters, outputFilename) { - let options = ['--target=sse2-i32x4', '--emit-asm', '-g', '-o', this.filename(outputFilename)]; + let options = ['--target=avx2-i32x8', '--emit-asm', '-g', '-o', this.filename(outputFilename)]; if (this.compiler.intelAsm && filters.intel && !filters.binary) { options = options.concat(this.compiler.intelAsm.split(" ")); } |