[simd.js] Disable SIMD polyfill.
Disable the polyfill in simd.js tests as the functions for Phase 1 have been implemented. BUG=v8:4124 LOG=N R=bbudge@chromium.org, bmeurer@chromium.org, littledan@chromium.org Committed: https://crrev.com/749ba3a13558cb018a2ec783e5dfb56d2f8528d8 Cr-Commit-Position: refs/heads/master@{#30452} Review URL: https://codereview.chromium.org/1305923005 Cr-Commit-Position: refs/heads/master@{#30527}
This commit is contained in:
parent
ec2518eedb
commit
c97069e4a4
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"flags": [
|
"flags": [
|
||||||
"--harmony-object",
|
"--harmony-object",
|
||||||
|
"--harmony-simd",
|
||||||
"test/simdjs/harness-adapt.js"
|
"test/simdjs/harness-adapt.js"
|
||||||
],
|
],
|
||||||
"name": "SIMDJS",
|
"name": "SIMDJS",
|
||||||
@ -9,7 +10,6 @@
|
|||||||
],
|
],
|
||||||
"resources": [
|
"resources": [
|
||||||
"test/simdjs/data/src/benchmarks/base.js",
|
"test/simdjs/data/src/benchmarks/base.js",
|
||||||
"test/simdjs/data/src/ecmascript_simd.js",
|
|
||||||
"test/simdjs/harness-adapt.js",
|
"test/simdjs/harness-adapt.js",
|
||||||
"test/simdjs/harness-finish.js",
|
"test/simdjs/harness-finish.js",
|
||||||
"test/simdjs/data/src/benchmarks/kernel-template.js",
|
"test/simdjs/data/src/benchmarks/kernel-template.js",
|
||||||
@ -242,4 +242,4 @@
|
|||||||
"timeout_arm": 480,
|
"timeout_arm": 480,
|
||||||
"timeout_arm64": 120,
|
"timeout_arm64": 120,
|
||||||
"units": "ms"
|
"units": "ms"
|
||||||
}
|
}
|
||||||
|
@ -37,7 +37,6 @@ output = {
|
|||||||
'units': 'ms',
|
'units': 'ms',
|
||||||
'resources': [
|
'resources': [
|
||||||
'test/simdjs/data/src/benchmarks/base.js',
|
'test/simdjs/data/src/benchmarks/base.js',
|
||||||
'test/simdjs/data/src/ecmascript_simd.js',
|
|
||||||
'test/simdjs/harness-adapt.js',
|
'test/simdjs/harness-adapt.js',
|
||||||
'test/simdjs/harness-finish.js'
|
'test/simdjs/harness-finish.js'
|
||||||
] + ['test/simdjs/data/src/benchmarks/%s.js' % t for t in tests],
|
] + ['test/simdjs/data/src/benchmarks/%s.js' % t for t in tests],
|
||||||
|
@ -21,8 +21,9 @@ load = function(filename) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO(bbudge): Drop when polyfill is not needed.
|
// To enable SIMD polyfill, load ecmascript_simd.js here,
|
||||||
load('ecmascript_simd.js');
|
// add to resources in SimdJs.json as well as the script
|
||||||
|
// to re-generate SimdJs.json.
|
||||||
|
|
||||||
load('base.js');
|
load('base.js');
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user