Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: test/simdjs/benchmarks-adapt.js

Issue 1146073002: Add perf json for simd.js benchmarks. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 (function() {
6
Michael Achenbach 2015/05/20 10:33:17 This is not used yet. See comment in other file.
bradn 2015/05/20 11:30:05 Dropped, leftover from the other approach.
7 "use strict";
8
9 var _oldLoad = load;
10
11 load = function(filename) {
12 // TODO(bradnelson): Drop this when fixed upstream.
13 // Skip broken tests for now.
14 if (filename === 'averageFloat32x4Load.js' ||
15 filename === 'matrix-multiplication.js' ||
16 filename === 'aobench.js') return;
17 if (filename !== 'kernel-template.js' &&
18 filename !== 'run.js' &&
19 filename !== 'base.js' &&
20 filename !== 'ecmascript_simd_tests.js' &&
21 filename !== '../ecmascript_simd.js' &&
22 filename !== 'averageFloat32x4.js' &&
23 filename !== 'averageFloat32x4LoadFromInt8Array.js') return;
24 _oldLoad(filename);
25 };
26
27 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698