1
1
var tests = [ ] ;
2
2
3
- /*
4
3
for ( let traceType of [ 'image' , 'heatmap' , 'contour' ] ) {
5
4
for ( let m of [ 10 , 20 , 40 , 80 , 160 , 320 , 640 , 1280 ] ) {
6
5
let nx = 5 * m ;
@@ -16,7 +15,6 @@ for(let traceType of ['image', 'heatmap', 'contour']) {
16
15
} ) ;
17
16
}
18
17
}
19
- */
20
18
21
19
function fillArrayFromToBy ( start , end , step ) {
22
20
const result = [ ] ;
@@ -28,11 +26,10 @@ function fillArrayFromToBy(start, end, step) {
28
26
29
27
//var allN = [1000, 2000, 4000, 8000, 16000, 32000, 64000, 128000];
30
28
var allN = fillArrayFromToBy ( 64000 , 128000 , 1000 ) ;
31
- //var allNTraces = [1, /*10, */100]
32
- var allNTraces = [ 1 ]
29
+ var allNTraces = [ 1 , 10 , 100 ]
33
30
34
- for ( let traceType of [ /* 'box', */ 'violin' ] ) {
35
- for ( let mode of [ /* 'no_points', */ 'all_points' ] ) {
31
+ for ( let traceType of [ 'box' , 'violin' ] ) {
32
+ for ( let mode of [ 'no_points' , 'all_points' ] ) {
36
33
for ( let nTraces of allNTraces ) {
37
34
for ( let n of allN ) {
38
35
tests . push ( {
@@ -52,7 +49,7 @@ for(let traceType of [/*'box', */'violin']) {
52
49
}
53
50
54
51
for ( let traceType of [ 'scatter' , 'scattergl' , 'scattergeo' ] ) {
55
- for ( let mode of [ /* 'markers', 'lines', */ 'markers+lines' ] ) {
52
+ for ( let mode of [ 'markers' , 'lines' , 'markers+lines' ] ) {
56
53
for ( let nTraces of allNTraces ) {
57
54
for ( let n of allN ) {
58
55
tests . push ( {
@@ -70,8 +67,8 @@ for(let traceType of ['scatter', 'scattergl', 'scattergeo']) {
70
67
}
71
68
}
72
69
73
- for ( let traceType of [ 'bar' /* , 'histogram'*/ ] ) {
74
- for ( let mode of [ 'group' /* , 'stack', 'overlay'*/ ] ) {
70
+ for ( let traceType of [ 'bar' , 'histogram' ] ) {
71
+ for ( let mode of [ 'group' , 'stack' , 'overlay' ] ) {
75
72
for ( let nTraces of allNTraces ) {
76
73
for ( let n of allN ) {
77
74
tests . push ( {
0 commit comments