This commit is contained in:
yezhengmao1 2025-04-09 11:57:39 +00:00
parent 482c4945ab
commit 3ee3b91994

View File

@ -52,7 +52,7 @@
},
{
"cell_type": "code",
"execution_count": 180,
"execution_count": 187,
"metadata": {},
"outputs": [],
"source": [
@ -69,7 +69,7 @@
},
{
"cell_type": "code",
"execution_count": 181,
"execution_count": 188,
"metadata": {},
"outputs": [],
"source": [
@ -85,6 +85,30 @@
"}"
]
},
{
"cell_type": "code",
"execution_count": 189,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"LM 1.08 XLA 1.3\n",
"LM 1.66 XLA 1.18\n",
"LM 1.64 XLA 1.25\n",
"LM 1.2 XLA 1.47\n",
"LM 1.08 XLA 1.14\n",
"LM 1.11 XLA 1.47\n",
"LM -38.0 XLA 1.2\n"
]
}
],
"source": [
"for y_data in data_a.values():\n",
" print(f\"LM {round(y_data[2]/y_data[0], 2)} XLA {round(y_data[2]/y_data[1], 2)}\")"
]
},
{
"cell_type": "code",
"execution_count": 182,