1
1
var tests = [ ] ;
2
2
3
3
for ( let traceType of [ 'image' , 'heatmap' , 'contour' ] ) {
4
- for ( let m of [ 10 , 20 , 40 , 80 , 160 , 320 , 640 ] ) {
4
+ for ( let m of [ 10 , 20 , 40 , 80 , 160 , 320 , 640 , 1280 ] ) {
5
5
let nx = 5 * m ;
6
6
let ny = 2 * m ;
7
7
tests . push ( {
@@ -16,10 +16,13 @@ for(let traceType of ['image', 'heatmap', 'contour']) {
16
16
}
17
17
}
18
18
19
+ var allN = [ /*1000, 2000, 4000, 8000, 16000, */ 32000 , 64000 , 128000 ] ;
20
+ var allNTraces = [ 1 /*, 10, 100*/ ]
21
+
19
22
for ( let traceType of [ 'box' , 'violin' ] ) {
20
23
for ( let mode of [ 'no_points' , 'all_points' ] ) {
21
- for ( let nTraces of [ 1 , 10 , 100 ] ) {
22
- for ( let n of [ 1000 , 2000 , 4000 , 8000 , 16000 , 32000 ] ) {
24
+ for ( let nTraces of allNTraces ) {
25
+ for ( let n of allN ) {
23
26
tests . push ( {
24
27
n :n ,
25
28
nTraces : nTraces ,
@@ -38,8 +41,8 @@ for(let traceType of ['box', 'violin']) {
38
41
39
42
for ( let traceType of [ 'scatter' , 'scattergl' , 'scattergeo' ] ) {
40
43
for ( let mode of [ 'markers' , 'lines' , 'markers+lines' ] ) {
41
- for ( let nTraces of [ 1 , 10 , 100 ] ) {
42
- for ( let n of [ 1000 , 2000 , 4000 , 8000 , 16000 , 32000 ] ) {
44
+ for ( let nTraces of allNTraces ) {
45
+ for ( let n of allN ) {
43
46
tests . push ( {
44
47
n :n ,
45
48
nTraces : nTraces ,
@@ -57,8 +60,8 @@ for(let traceType of ['scatter', 'scattergl', 'scattergeo']) {
57
60
58
61
for ( let traceType of [ 'bar' , 'histogram' ] ) {
59
62
for ( let mode of [ 'group' , 'stack' , 'overlay' ] ) {
60
- for ( let nTraces of [ 1 , 10 , 100 ] ) {
61
- for ( let n of [ 1000 , 2000 , 4000 , 8000 , 16000 , 32000 ] ) {
63
+ for ( let nTraces of allNTraces ) {
64
+ for ( let n of allN ) {
62
65
tests . push ( {
63
66
n :n ,
64
67
nTraces : nTraces ,
0 commit comments