@@ -25,41 +25,31 @@ base =
25
25
P. fixedLoaded
26
26
. V. datasetMiniature
27
27
. V. fundsDefault
28
- . V. timescaleCompressed
29
28
. P. initCooldown 5
30
29
. P. analysisStandard
31
- . P. desc " Miniature dataset, CI-friendly duration, bench scale"
32
30
33
31
benchDuration :: Types. Profile -> Types. Profile
34
32
benchDuration =
35
- P. shutdownOnBlock 15
36
- -- TODO: dummy "generator.epochs" ignored in favor of "--shutdown-on".
37
- -- Create a "time.epochs" or "time.blocks" or similar, IDK!
38
- -- This applies to all profiles!
33
+ V. timescaleCompressed
34
+ . P. shutdownOnBlock 15
39
35
. P. generatorEpochs 3
40
36
41
37
duration30 :: Types. Profile -> Types. Profile
42
38
duration30 =
43
- P. shutdownOnSlot 1800
44
- -- TODO: dummy "generator.epochs" ignored in favor of "--shutdown-on".
45
- -- Create a "time.epochs" or "time.blocks" or similar, IDK!
46
- -- This applies to all profiles!
39
+ V. timescaleCompressed
40
+ . P. shutdownOnSlot 1800
47
41
. P. generatorEpochs 3
48
42
49
43
duration60 :: Types. Profile -> Types. Profile
50
44
duration60 =
51
- P. shutdownOnSlot 3600
52
- -- TODO: dummy "generator.epochs" ignored in favor of "--shutdown-on".
53
- -- Create a "time.epochs" or "time.blocks" or similar, IDK!
54
- -- This applies to all profiles!
45
+ V. timescaleCompressed
46
+ . P. shutdownOnSlot 3600
55
47
. P. generatorEpochs 6
56
48
57
49
duration240 :: Types. Profile -> Types. Profile
58
50
duration240 =
59
- P. shutdownOnSlot 14400
60
- -- TODO: dummy "generator.epochs" ignored in favor of "--shutdown-on".
61
- -- Create a "time.epochs" or "time.blocks" or similar, IDK!
62
- -- This applies to all profiles!
51
+ V. timescaleCompressed
52
+ . P. shutdownOnSlot 14400
63
53
. P. generatorEpochs 24
64
54
65
55
--------------------------------------------------------------------------------
@@ -71,6 +61,7 @@ profilesNoEraMiniature =
71
61
------------------------------------------------------------------------------
72
62
let ciBench =
73
63
P. empty & base
64
+ . P. desc " Miniature dataset, CI-friendly duration, bench scale"
74
65
. P. uniCircle . P. loopback
75
66
. benchDuration
76
67
. V. clusterDefault -- TODO: "cluster" should be "null" here.
@@ -107,11 +98,12 @@ profilesNoEraMiniature =
107
98
, ciBench10Plutus & P. name " 10-plutus" . loop . P. dreps 0 . P. traceForwardingOn . P. newTracing . P. p2pOff
108
99
]
109
100
++
110
- -------------------------------------------------------------------------------------
111
- -- 6 nodes in dense topology, reduced blocksize, miniature dataset and 30mins runtime
112
- -------------------------------------------------------------------------------------
101
+ ---------------------------------------------------------------------------------------
102
+ -- 6 nodes in dense topology, reduced blocksize, miniature dataset and varying runtimes
103
+ ---------------------------------------------------------------------------------------
113
104
let dense =
114
105
P. empty & base
106
+ . P. desc " Miniature dataset, dense topology on local cluster, 64k blocks"
115
107
. P. torusDense . V. hosts 6 . P. loopback
116
108
. V. genesisVariantLatest . P. blocksize64k . P. v9Preview . P. v8Preview
117
109
. P. dreps 0
0 commit comments