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