Skip to content

Commit 8e8fe09

Browse files
committed
initial benchmarks
1 parent 283e52f commit 8e8fe09

File tree

12 files changed

+1014
-1
lines changed

12 files changed

+1014
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ project/plugins/project/
1515
# Scala-IDE specific
1616
.scala_dependencies
1717
.worksheet
18+
19+
# IDE junk
20+
.idea

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
# scrypto-benchmarks
2-
Benchmarks for authenticated AVL+ trees and other features of the Scrypto framework
2+
3+
Benchmarks for authenticated AVL+ trees and other features of the Scrypto framework.
4+
For now this repository contains benchmarks. You can find some results for
5+
our hardware in the paper .
6+
7+
## Benchmarks List
8+
9+
10+

build.sbt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name := "scrypto-benchmarks"
2+
3+
version := "1.0"
4+
5+
scalaVersion := "2.12.1"
6+
7+
8+
scalacOptions in ThisBuild ++= Seq("-unchecked", "-deprecation")
9+
10+
libraryDependencies ++= Seq(
11+
// "org.mapdb" % "mapdb" % "3.0.2",
12+
"org.scorexfoundation" %% "scrypto" % "1.2.0-SNAPSHOT")

project/build.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version = 0.13.8

project/plugins.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
logLevel := Level.Warn

0 commit comments

Comments
 (0)