Skip to content

Commit

Permalink
Save cops results
Browse files Browse the repository at this point in the history
  • Loading branch information
sgdxbc committed May 6, 2024
1 parent 87502db commit 7e4ad18
Show file tree
Hide file tree
Showing 135 changed files with 191 additions and 24 deletions.
78 changes: 56 additions & 22 deletions tools/boson-control/notebooks/cops.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@
"outputs": [],
"source": [
"data = pd.concat([pd.read_csv(data, names=[\n",
" \"Variant\", \"#Replica/Region\", \"#Client/Region\", \"#PutClient/Region\", \"Throughput\", \"Latency\"\n",
"]) for data in glob('cops-*.txt')], ignore_index=True)\n",
"data[\"Put %\"] = data[\"#PutClient/Region\"] / 2 / data[\"#Client/Region\"] * 100\n",
"data = data.sort_values(by=\"Latency\")\n",
" \"Variant\", \"Regions\", \"#Client/Region\", \"Put Ratio\", \"Throughput\", \"Latency\"\n",
"]) for data in glob('saved/cops/*.txt')], ignore_index=True)\n",
"data = data.sort_values([\"Variant\", \"Regions\", \"#Client/Region\"])\n",
"data[\"Latency (ms)\"] = data[\"Latency\"] * 1000\n",
"data"
]
Expand All @@ -37,18 +36,54 @@
"metadata": {},
"outputs": [],
"source": [
"f = sns.lineplot(data=data[data[\"Put %\"] == 20],\n",
"f = sns.lineplot(\n",
" data=data[(data[\"Put Ratio\"] == 0.01) & (data[\"Regions\"] == \"af+ap+eu+sa+us\")],\n",
" x=\"Throughput\", y=\"Latency (ms)\", sort=False,\n",
" hue=\"Variant\", style=\"Variant\", markers=['o'], linewidth=2.5,\n",
" hue_order=[\"Untrusted\", \"Replicated (local)\", \"Quorum\"])\n",
"# sns.move_legend(f, \"upper left\")\n",
"# f.set(xlim=(0, 110000), ylim=(0, 0.013))\n",
"f.set(xlim=(0, 110000), ylim=(0.5, 600), yscale=\"log\")\n",
"f.axhline(450, color=\"red\", linestyle=\"--\")\n",
"f.set(xticklabels=[\"0\", \"20K\", \"40K\", \"60K\", \"80K\", \"100K\"])\n",
"f.set(xlabel=\"Thoughput (op/sec)\")\n",
"\n",
"f.figure.savefig(\"throughput-latency.pdf\", bbox_inches='tight')"
" hue=\"Variant\", \n",
" style=\"Variant\", markers=['o'], linewidth=2.5,\n",
" hue_order=[\"Untrusted\", \"Replicated\", \"Quorum\", \"NitroEnclaves\"])\n",
"f.set(ylim=(0, 110))\n",
"# f.figure.savefig(\"throughput-latency.pdf\", bbox_inches='tight')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"region_data = data[data[\"Put Ratio\"] == 0.01].groupby([\"Variant\", \"Regions\"]).max(\"Throughput\").reset_index()\n",
"def normalized_throughput(row):\n",
" variant = row.at['Variant']\n",
" # TODO\n",
" if variant == \"Replicated\":\n",
" return 1\n",
" one_row = region_data[(region_data['Variant'] == variant) & (region_data['Regions'] == \"af\")]\n",
" one = one_row[\"Throughput\"].values[0]\n",
" return row.at['Throughput'] / one\n",
"region_data[\"Normalized Throughput\"] = region_data.apply(normalized_throughput, axis=1)\n",
"region_data"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"sns.barplot(data=region_data,\n",
" x=\"Regions\", y=\"Normalized Throughput\", hue=\"Variant\",\n",
" hue_order=[\"Untrusted\", \"Replicated\", \"Quorum\", \"NitroEnclaves\"])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"ratio_data = data[data[\"Regions\"] == \"af+ap+eu+sa+us\"].groupby([\"Variant\", \"Put Ratio\"]).max(\"Throughput\").reset_index()\n",
"ratio_data"
]
},
{
Expand All @@ -57,12 +92,11 @@
"metadata": {},
"outputs": [],
"source": [
"f = sns.lineplot(data=data.groupby([\"Put %\", \"Variant\"]).max(),\n",
" x=\"Put %\", y=\"Throughput\", hue=\"Variant\", style=\"Variant\", markers=['o'],\n",
" hue_order=[\"Untrusted\", \"Replicated (local)\", \"Quorum\"])\n",
"f.set(ylim=(0, 380000))\n",
"f.set(yticklabels=[0] + [f\"{x}K\" for x in range(50, 351, 50)])\n",
"f.figure.savefig(\"ratio.pdf\", bbox_inches='tight')\n"
"f = sns.lineplot(data=ratio_data,\n",
" x=\"Put Ratio\", y=\"Throughput\", hue=\"Variant\",\n",
" hue_order=[\"Untrusted\", \"Replicated\", \"Quorum\", \"NitroEnclaves\"],\n",
" style=\"Variant\", markers=['o'])\n",
"f.set(xscale=\"log\")"
]
}
],
Expand All @@ -82,7 +116,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
"version": "3.10.12"
}
},
"nbformat": 4,
Expand Down
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714981714.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,1,0.01,19822.8,0.000739327
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714981758.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,2,0.01,36802.7,0.000708095
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714981796.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,3,0.01,52164.6,0.000765951
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714981830.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,5,0.01,81935.5,0.000784383
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714981864.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,8,0.01,117345.1,0.000927231
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714981897.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,10,0.01,137032.1,0.001079295
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714981935.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,12,0.01,158064.9,0.000954367
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714981969.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,15,0.01,183588.6,0.001030143
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982005.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,18,0.01,208761.5,0.001065983
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982043.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,20,0.01,219388.7,0.001103871
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982084.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,25,0.01,252562.6,0.001200127
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982119.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,30,0.01,276148.8,0.001274879
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982169.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,35,0.01,294906.4,0.001343487
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982206.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,40,0.01,308808.4,0.001413119
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982242.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,50,0.01,332108.8,0.001581055
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982276.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,60,0.01,349592.4,0.001774591
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982311.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,80,0.01,377535.6,0.002129919
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982347.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,100,0.01,401308.7,0.002486271
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982383.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,120,0.01,419541.6,0.002830335
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982422.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,150,0.01,445460,0.003483647
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982507.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,180,0.01,459119.2,0.004067327
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982543.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,200,0.01,464853.5,0.004288511
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982580.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,250,0.01,465244.6,0.005361663
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982618.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,300,0.01,472467.5,0.006287359
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982654.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,500,0.01,475792.3,0.010485759
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982694.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,1000,0.01,464517.5,0.021921791
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982731.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,2000,0.01,451514.8,0.051085312
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982771.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,3000,0.01,443965.9,0.08906342
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982805.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,4000,0.01,442825.4,0.12838502
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714982855.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa+us,5000,0.01,443105.4,0.17930649
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983150.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,1,0.01,16215.6,0.002869247
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983188.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,2,0.01,28742.6,0.003246079
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983222.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,5,0.01,59699,0.003842047
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983257.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,8,0.01,85968.2,0.004276223
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983292.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,10,0.01,100433.9,0.004476927
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983328.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,12,0.01,112784.7,0.004571135
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983362.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,15,0.01,127946.8,0.004808703
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983397.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,20,0.01,143085.3,0.005312511
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983432.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,25,0.01,154798.8,0.005693439
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983467.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,30,0.01,162686.4,0.006307839
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983502.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,50,0.01,187694.4,0.007983103
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983539.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,80,0.01,207805.2,0.011403263
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983574.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,70,0.01,202452,0.010444799
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983611.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,60,0.01,195188,0.009486335
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983649.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,100,0.01,214585.8,0.015245311
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983687.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,150,0.01,225217.1,0.02359296
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983724.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,200,0.01,228418.8,0.02711552
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983760.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,300,0.01,229513.6,0.036470786
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983795.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,400,0.01,228915.3,0.043450367
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983832.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,800,0.01,227446.1,0.067076094
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983868.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,1200,0.01,224588.6,0.09201255
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983903.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,1500,0.01,223064.8,0.113836035
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714983941.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,2000,0.01,218165.4,0.15689318
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714984050.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa+us,2500,0.01,218038.1,0.23107994
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714984123.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,1,0.01,9443.4,0.04305715
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714984317.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,3,0.01,22615.9,0.06265242
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714984711.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,8,0.01,57707.3,0.060358655
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714984749.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,10,0.01,70251.7,0.057442304
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714984787.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,15,0.01,95475.9,0.056786943
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714984825.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,20,0.01,112515.3,0.05881856
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714984860.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,25,0.01,125068.4,0.058228735
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714984895.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,30,0.01,135469.6,0.058785792
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714984937.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,40,0.01,149206.4,0.06317671
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714984974.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,50,0.01,161372.3,0.06520832
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,80,0.01,184518.9,0.075563006
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985047.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,70,0.01,179347.6,0.07202406
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985086.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,100,0.01,190756,0.079167485
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985123.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,150,0.01,201652.1,0.08585216
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985160.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,200,0.01,201098.4,0.0868352
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985203.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,300,0.01,201186.8,0.093913086
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985239.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,500,0.01,202855.8,0.10603725
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985274.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,1000,0.01,201133.1,0.13683917
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985353.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,1500,0.01,195945,0.18507366
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985484.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,1700,0.01,199367.6,0.24720179
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985518.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,1600,0.01,200708.8,0.21181235
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985588.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Replicated,af+ap+eu+sa+us,1,0.01,10.4,0.5683282
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985751.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Replicated,af+ap+eu+sa+us,3000,0.01,29255.6,0.67056435
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985793.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Replicated,af+ap+eu+sa+us,5000,0.01,45292.2,0.7088374
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714985830.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Replicated,af+ap+eu+sa+us,8000,0.01,64248.6,0.85773516
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714986148.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Replicated,af+ap+eu+sa+us,10000,0.01,70974.9,0.9127854
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714986301.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Replicated,af+ap+eu+sa+us,1000,0.01,10131.7,0.6128927
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714986500.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,2,0.01,15533.1,0.06258688
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714986609.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NitroEnclaves,af+ap+eu+sa+us,5,0.01,37814,0.060391422
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714986726.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Replicated,af+ap+eu+sa+us,6000,0.01,52549.5,0.7507804
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714986764.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Replicated,af+ap+eu+sa+us,7000,0.01,57448.9,0.7958692
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714987029.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Replicated,af+ap+eu+sa,10000,0.01,67069.1,0.80163634
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714987066.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Replicated,af+ap+eu,10000,0.01,63112.8,0.66532147
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714987114.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Replicated,af+ap+eu,12000,0.01,65572,0.8089764
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714987158.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Replicated,af+ap,15000,0.01,78862.9,5.762974
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714987264.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu+sa,5000,0.01,361178.8,0.16777216
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714987300.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap+eu,5000,0.01,271449.4,0.16960716
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714987335.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af+ap,5000,0.01,181027.1,0.17930649
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714987443.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Untrusted,af,5000,0.01,92073.4,0.1572864
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714987500.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu+sa,2500,0.01,179221.2,0.19621478
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714987537.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap+eu,2500,0.01,138509.9,0.19359334
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714987570.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af+ap,2500,0.01,93659.6,0.1882194
1 change: 1 addition & 0 deletions tools/boson-control/notebooks/saved/cops/1714987603.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quorum,af,2500,0.01,47698.7,0.18048614
Loading

0 comments on commit 7e4ad18

Please sign in to comment.