-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ 0dfc7e5 🚀
- Loading branch information
1 parent
e3580ba
commit 1590683
Showing
728 changed files
with
221,514 additions
and
0 deletions.
There are no files selected for viewing
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,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 323428d35dcf875b3259de76eeefea3f | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,114 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": { | ||
"collapsed": false, | ||
"pycharm": { | ||
"name": "#%% md\n" | ||
} | ||
}, | ||
"source": [ | ||
"# Run Environment Information" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": { | ||
"collapsed": false, | ||
"pycharm": { | ||
"name": "#%% md\n" | ||
} | ||
}, | ||
"source": [ | ||
"Here is the information from the running environment." | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": 1, | ||
"metadata": { | ||
"execution": { | ||
"iopub.execute_input": "2023-05-18T08:36:54.007359Z", | ||
"iopub.status.busy": "2023-05-18T08:36:54.006946Z", | ||
"iopub.status.idle": "2023-05-18T08:36:55.198370Z", | ||
"shell.execute_reply": "2023-05-18T08:36:55.197483Z" | ||
}, | ||
"pycharm": { | ||
"name": "#%%\n" | ||
} | ||
}, | ||
"outputs": [ | ||
{ | ||
"name": "stdout", | ||
"output_type": "stream", | ||
"text": [ | ||
"OS: Linux-5.15.0-1037-azure-x86_64-with-debian-bookworm-sid\n", | ||
"Python: CPython 3.7.16\n" | ||
] | ||
}, | ||
{ | ||
"name": "stdout", | ||
"output_type": "stream", | ||
"text": [ | ||
"CPU Brand: Intel(R) Xeon(R) Platinum 8272CL CPU @ 2.60GHz\n", | ||
"CPU Count: 2\n", | ||
"CPU Freq: 2593.905 MHz\n", | ||
"Memory Size: 6.781 GiB\n", | ||
"Has CUDA: No\n" | ||
] | ||
} | ||
], | ||
"source": [ | ||
"import os\n", | ||
"import platform\n", | ||
"import shutil\n", | ||
"\n", | ||
"import cpuinfo\n", | ||
"import psutil\n", | ||
"from hbutils.scale import size_to_bytes_str\n", | ||
"\n", | ||
"print('OS:', platform.platform())\n", | ||
"print('Python:', platform.python_implementation(), platform.python_version())\n", | ||
"print('CPU Brand:', cpuinfo.get_cpu_info()[\"brand_raw\"])\n", | ||
"print('CPU Count:', os.cpu_count())\n", | ||
"print('CPU Freq:', psutil.cpu_freq().current, 'MHz')\n", | ||
"print('Memory Size:', size_to_bytes_str(psutil.virtual_memory().total, precision=3))\n", | ||
"print('Has CUDA:', 'Yes' if shutil.which('nvidia-smi') else 'No')" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": { | ||
"collapsed": false, | ||
"pycharm": { | ||
"name": "#%% md\n" | ||
} | ||
}, | ||
"source": [ | ||
"Please note that, this information in deployed documentation is automatically executed on Github Action. Therefore, some performance data may be different with your local environment" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3", | ||
"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.7.16" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 0 | ||
} |
108 changes: 108 additions & 0 deletions
108
ccip/.doctrees/nbsphinx/information/environment.result.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,108 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": { | ||
"collapsed": false, | ||
"pycharm": { | ||
"name": "#%% md\n" | ||
} | ||
}, | ||
"source": [ | ||
"# Run Environment Information" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": { | ||
"collapsed": false, | ||
"pycharm": { | ||
"name": "#%% md\n" | ||
} | ||
}, | ||
"source": [ | ||
"Here is the information from the running environment." | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": 1, | ||
"metadata": { | ||
"execution": { | ||
"iopub.execute_input": "2023-05-18T08:35:47.031449Z", | ||
"iopub.status.busy": "2023-05-18T08:35:47.031203Z", | ||
"iopub.status.idle": "2023-05-18T08:35:48.222301Z", | ||
"shell.execute_reply": "2023-05-18T08:35:48.221453Z" | ||
}, | ||
"pycharm": { | ||
"name": "#%%\n" | ||
} | ||
}, | ||
"outputs": [ | ||
{ | ||
"name": "stdout", | ||
"output_type": "stream", | ||
"text": [ | ||
"OS: Linux-5.15.0-1037-azure-x86_64-with-debian-bookworm-sid\n", | ||
"Python: CPython 3.7.16\n", | ||
"CPU Brand: Intel(R) Xeon(R) Platinum 8272CL CPU @ 2.60GHz\n", | ||
"CPU Count: 2\n", | ||
"CPU Freq: 2593.905 MHz\n", | ||
"Memory Size: 6.781 GiB\n", | ||
"Has CUDA: No\n" | ||
] | ||
} | ||
], | ||
"source": [ | ||
"import os\n", | ||
"import platform\n", | ||
"import shutil\n", | ||
"\n", | ||
"import cpuinfo\n", | ||
"import psutil\n", | ||
"from hbutils.scale import size_to_bytes_str\n", | ||
"\n", | ||
"print('OS:', platform.platform())\n", | ||
"print('Python:', platform.python_implementation(), platform.python_version())\n", | ||
"print('CPU Brand:', cpuinfo.get_cpu_info()[\"brand_raw\"])\n", | ||
"print('CPU Count:', os.cpu_count())\n", | ||
"print('CPU Freq:', psutil.cpu_freq().current, 'MHz')\n", | ||
"print('Memory Size:', size_to_bytes_str(psutil.virtual_memory().total, precision=3))\n", | ||
"print('Has CUDA:', 'Yes' if shutil.which('nvidia-smi') else 'No')" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": { | ||
"collapsed": false, | ||
"pycharm": { | ||
"name": "#%% md\n" | ||
} | ||
}, | ||
"source": [ | ||
"Please note that, this information in deployed documentation is automatically executed on Github Action. Therefore, some performance data may be different with your local environment" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3", | ||
"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.7.16" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 0 | ||
} |
Binary file not shown.
Binary file not shown.
Empty file.
Oops, something went wrong.