Files
kesto/treeinterface/benchmarks/go.mod
arnaucube aa0d8728d8 Add treeinterface benchmarks
```
nCPU: 4, nLeafs: 10000
	asmtree.Add loop:	1m33.393613916s
	asmtree.AddBatch:	480.164271ms
	gravitontree.Add loop:	10.127451689s
	gravitontree.AddBatch:	141.29108ms
	arbo.Add loop:		1.16466211s
	arbo.AddBatch:		97.870759ms

nCPU: 8, nLeafs: 10000
	asmtree.Add loop:	24.538163095s
	asmtree.AddBatch:	194.14454ms
	gravitontree.Add loop:	6.150883978s
	gravitontree.AddBatch:	90.742666ms
	arbo.Add loop:		600.259558ms
	arbo.AddBatch:		50.440291ms

---

nCPU: 4, nLeafs: 500000
	asmtree.AddBatch:	24.95076993s
	gravitontree.AddBatch:	11.768588412s
	arbo.AddBatch:		23.360363426s

nCPU: 8, nLeafs: 500000
	asmtree.Add loop:	(not executed)
	asmtree.AddBatch:	14.363474201s
	gravitontree.Add loop:	8m45.300930089s
	gravitontree.AddBatch:	7.377581508s
	arbo.Add loop:  	2m0.229851504s
	arbo.AddBatch:  	8.759028338s
```
2021-05-19 22:50:39 +02:00

13 lines
417 B
Modula-2

module github.com/arnaucube/kesto/treeinterface/benchmarks
go 1.16
replace github.com/arnaucube/kesto/treeinterface/arbotree => ../arbotree
require (
github.com/arnaucube/arbo v0.0.0-20210519105811-13378d338ef2
github.com/arnaucube/kesto/treeinterface/arbotree v0.0.0-20210518090017-aff9bcc18604
github.com/p4u/asmt v0.0.0-20210327173007-3e47da54b6b6
go.vocdoni.io/dvote v0.6.1-0.20210519145433-4b6da3324284
)