11var tests = [ ] ;
22
33for ( 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 ] ) {
55 let nx = 5 * m ;
66 let ny = 2 * m ;
77 tests . push ( {
@@ -16,10 +16,13 @@ for(let traceType of ['image', 'heatmap', 'contour']) {
1616 }
1717}
1818
19+ var allN = [ /*1000, 2000, 4000, 8000, 16000, */ 32000 , 64000 , 128000 ] ;
20+ var allNTraces = [ 1 /*, 10, 100*/ ]
21+
1922for ( let traceType of [ 'box' , 'violin' ] ) {
2023 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 ) {
2326 tests . push ( {
2427 n :n ,
2528 nTraces : nTraces ,
@@ -38,8 +41,8 @@ for(let traceType of ['box', 'violin']) {
3841
3942for ( let traceType of [ 'scatter' , 'scattergl' , 'scattergeo' ] ) {
4043 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 ) {
4346 tests . push ( {
4447 n :n ,
4548 nTraces : nTraces ,
@@ -57,8 +60,8 @@ for(let traceType of ['scatter', 'scattergl', 'scattergeo']) {
5760
5861for ( let traceType of [ 'bar' , 'histogram' ] ) {
5962 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 ) {
6265 tests . push ( {
6366 n :n ,
6467 nTraces : nTraces ,
0 commit comments