generated from carpentries/workbench-template-md
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33f13d8
commit b47b90c
Showing
8 changed files
with
235 additions
and
3 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
65 changes: 65 additions & 0 deletions
65
files/line_profiler-worked-example/line-profiling-worked-example.ipynb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "e80c86cb-d60a-4e45-a34c-191aab11acf0", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"!pip install line_profiler\n", | ||
"%load_ext line_profiler" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "de5e278a-6826-4f42-b1af-496f5aabf996", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"def fizzbuzz(n):\n", | ||
" for i in range(1, n + 1):\n", | ||
" if i % 3 == 0 and i % 5 == 0:\n", | ||
" print(\"FizzBuzz\")\n", | ||
" elif i % 3 == 0:\n", | ||
" print(\"Fizz\")\n", | ||
" elif i % 5 == 0:\n", | ||
" print(\"Buzz\")\n", | ||
" else:\n", | ||
" print(i)" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "c54f2642-617e-4a51-b3e8-1ff1ba0e8426", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"%lprun -f fizzbuzz fizzbuzz(100)" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3 (ipykernel)", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.10.12" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
89 changes: 89 additions & 0 deletions
89
files/snakeviz-worked-example/snakeviz-worked-example.ipynb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "83b45371-9cd9-4a8f-b0ff-ceb1bfc2ecc2", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"import time\n", | ||
"\n", | ||
"def a_1():\n", | ||
" for i in range(3):\n", | ||
" b_1()\n", | ||
" time.sleep(1)\n", | ||
" b_2()\n", | ||
" \n", | ||
"def b_1():\n", | ||
" c_1()\n", | ||
" c_2()\n", | ||
"\n", | ||
"def b_2():\n", | ||
" time.sleep(1)\n", | ||
" \n", | ||
"def c_1():\n", | ||
" time.sleep(0.5)\n", | ||
"\n", | ||
"def c_2():\n", | ||
" time.sleep(0.3)\n", | ||
" d_1()\n", | ||
"\n", | ||
"def d_1():\n", | ||
" time.sleep(0.1)\n", | ||
" " | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "0fc38195-3dc4-4a7c-82f6-1167f54d3182", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"!pip install snakeviz" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "c47affa0-23cc-43f8-a4f8-e73ab2f44afd", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"%load_ext snakeviz" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "58040218-8578-47fc-9a18-476f4b27d25a", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"%snakeviz a_1()" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3 (ipykernel)", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.10.12" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters