Skip to content

Commit

Permalink
Fix LGTM Warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hugo-dc committed Aug 25, 2020
1 parent b454e05 commit 95a5f9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions notebooks/wasm-engines.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2358,7 +2358,7 @@
"metadata": {},
"outputs": [],
"source": [
"plt_fig = plotThreeTestsExecTime(df_interp, blake2b_test_names, '../images/wasm-interp-blake2b-exec.png', title=\"wasm interpreters compared - blake2b\")"
"plotThreeTestsExecTime(df_interp, blake2b_test_names, '../images/wasm-interp-blake2b-exec.png', title=\"wasm interpreters compared - blake2b\")"
]
},
{
Expand Down Expand Up @@ -5945,7 +5945,7 @@
"source": [
"\n",
"# test to make sure that scout wasm3 data is present\n",
"test_scout_wasm3_plot = plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],\n",
"plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],\n",
" '../images/.scout_wasm3_test1_png')\n"
]
},
Expand All @@ -5957,7 +5957,7 @@
"source": [
"\n",
"# test to make sure that scout_wamr.c data is present\n",
"test_scout_wasm3_plot = plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],\n",
"plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],\n",
" '../images/.scout_wasm3_test2_png')\n"
]
},
Expand Down
6 changes: 3 additions & 3 deletions notebooks/wasm-engines.py
Original file line number Diff line number Diff line change
Expand Up @@ -1843,7 +1843,7 @@ def plotThreeTestsExecTime(df_testdata, three_names, filepath, title="Title", fi
# In[ ]:


plt_fig = plotThreeTestsExecTime(df_interp, blake2b_test_names, '../images/wasm-interp-blake2b-exec.png', title="wasm interpreters compared - blake2b")
plotThreeTestsExecTime(df_interp, blake2b_test_names, '../images/wasm-interp-blake2b-exec.png', title="wasm interpreters compared - blake2b")


# In[ ]:
Expand Down Expand Up @@ -4622,7 +4622,7 @@ def plotTimeVsGas(df_benchdata, filepath, title=""):


# test to make sure that scout wasm3 data is present
test_scout_wasm3_plot = plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],
plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],
'../images/.scout_wasm3_test1_png')


Expand All @@ -4631,7 +4631,7 @@ def plotTimeVsGas(df_benchdata, filepath, title=""):


# test to make sure that scout_wamr.c data is present
test_scout_wasm3_plot = plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],
plotOneTestColoredTicks(df_scout_data[df_scout_data['engine'].isin(['wasm3-with-bignums'])],
'../images/.scout_wasm3_test2_png')


Expand Down

0 comments on commit 95a5f9c

Please sign in to comment.