Skip to content

Commit

Permalink
Deploying to gh-pages from @ 695148c 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
HansBug committed Oct 16, 2024
1 parent 6563a4d commit 525f2f2
Show file tree
Hide file tree
Showing 3,754 changed files with 205,436 additions and 110,495 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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: 048a7dc8abc2d73d29c3a0eb0ff92981
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.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

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": "2024-10-16T15:09:03.522428Z",
"iopub.status.busy": "2024-10-16T15:09:03.522226Z",
"iopub.status.idle": "2024-10-16T15:09:04.692180Z",
"shell.execute_reply": "2024-10-16T15:09:04.691359Z"
},
"pycharm": {
"name": "#%%\n"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"OS: Linux-6.5.0-1025-azure-x86_64-with-glibc2.34\n",
"Python: CPython 3.8.18\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU Brand: AMD EPYC 7763 64-Core Processor\n",
"CPU Count: 4\n",
"CPU Freq: 2739.3894999999998 MHz\n",
"Memory Size: 15.606 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, these information in deployed documentation is automatically executed on Github Action. Therefore, some performance data may be different. In the `README.md`, it is the result of our local test."
]
}
],
"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.8.18"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
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": "2024-10-16T13:22:24.625626Z",
"iopub.status.busy": "2024-10-16T13:22:24.625122Z",
"iopub.status.idle": "2024-10-16T13:22:25.804391Z",
"shell.execute_reply": "2024-10-16T13:22:25.803704Z"
},
"pycharm": {
"name": "#%%\n"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"OS: Linux-6.5.0-1025-azure-x86_64-with-glibc2.34\n",
"Python: CPython 3.8.18\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU Brand: AMD EPYC 7763 64-Core Processor\n",
"CPU Count: 4\n",
"CPU Freq: 2986.29575 MHz\n",
"Memory Size: 15.606 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, these information in deployed documentation is automatically executed on Github Action. Therefore, some performance data may be different. In the `README.md`, it is the result of our local test."
]
}
],
"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.8.18"
}
},
"nbformat": 4,
"nbformat_minor": 0
}

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

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.
Loading

0 comments on commit 525f2f2

Please sign in to comment.