aboutsummaryrefslogtreecommitdiff
path: root/guests
diff options
context:
space:
mode:
authorKamen Mladenov <kamen@syndamia.com>2025-02-03 10:08:02 +0200
committerKamen Mladenov <kamen@syndamia.com>2025-02-03 10:08:02 +0200
commit3a98310bafbfa7cf20d8bfcf41510781567b1417 (patch)
treeef766d244869020d5bb9bfd61be438d36e28534f /guests
parent6945c597d9f39e8d603e8cdac17705c8b167e2ba (diff)
downloadzkVMs-benchmarks-3a98310bafbfa7cf20d8bfcf41510781567b1417.tar
zkVMs-benchmarks-3a98310bafbfa7cf20d8bfcf41510781567b1417.tar.gz
zkVMs-benchmarks-3a98310bafbfa7cf20d8bfcf41510781567b1417.zip
feat(zkvms_host_io): Add argument for private input
Diffstat (limited to 'guests')
-rw-r--r--guests/fibonacci/default_private_input.toml1
-rw-r--r--guests/fibonacci/default_public_input.toml3
-rw-r--r--guests/graph_coloring/default_private_input.toml12
-rw-r--r--guests/graph_coloring/default_public_input.toml13
4 files changed, 14 insertions, 15 deletions
diff --git a/guests/fibonacci/default_private_input.toml b/guests/fibonacci/default_private_input.toml
new file mode 100644
index 0000000..f0375d7
--- /dev/null
+++ b/guests/fibonacci/default_private_input.toml
@@ -0,0 +1 @@
+fN = 259695496911122585
diff --git a/guests/fibonacci/default_public_input.toml b/guests/fibonacci/default_public_input.toml
index 74b33bc..c1f77d0 100644
--- a/guests/fibonacci/default_public_input.toml
+++ b/guests/fibonacci/default_public_input.toml
@@ -1,2 +1 @@
-n = 85
-fN = 259695496911122585
+n = 85
diff --git a/guests/graph_coloring/default_private_input.toml b/guests/graph_coloring/default_private_input.toml
new file mode 100644
index 0000000..c593326
--- /dev/null
+++ b/guests/graph_coloring/default_private_input.toml
@@ -0,0 +1,12 @@
+coloring = [
+ [0, 2],
+ [1, 1],
+ [2, 1],
+ [3, 0],
+ [4, 1],
+ [5, 2],
+ [6, 0],
+ [7, 0],
+ [8, 1],
+ [9, 2]
+]
diff --git a/guests/graph_coloring/default_public_input.toml b/guests/graph_coloring/default_public_input.toml
index b240a3a..c09ebb0 100644
--- a/guests/graph_coloring/default_public_input.toml
+++ b/guests/graph_coloring/default_public_input.toml
@@ -12,16 +12,3 @@ graph = [
]
colors = 3
-
-coloring = [
- [0, 2],
- [1, 1],
- [2, 1],
- [3, 0],
- [4, 1],
- [5, 2],
- [6, 0],
- [7, 0],
- [8, 1],
- [9, 2]
-]