From 562da51f4b1aa4679a16245ae1021ad356aac846 Mon Sep 17 00:00:00 2001 From: Teng Gao Date: Sun, 20 Jun 2021 09:39:04 +0800 Subject: [PATCH 1/2] add notes of python version in case of circular import bug --- tb_plugin/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tb_plugin/README.md b/tb_plugin/README.md index c45a13345..6b95b25b6 100644 --- a/tb_plugin/README.md +++ b/tb_plugin/README.md @@ -368,3 +368,8 @@ one worker is much larger than others, there may be a problem of loading balance * Data Transfer Time (us): Total time actually used for data transfer in operator of this type. * Ave Data Transfer Time (us): Average time actually used for data transfer in each operator of this type. +### PyTorch Profiler TensorBoard Plugin 0.2 Release Notes + +Note: If the tensorboard launching reports error message "ImportError" and "circular import", +please check your Python version. +The Python 3.9.0, 3.9.1, 3.9.2 has this [bug](https://bugs.python.org/issue43517) and should be avoided using. From 5cb47b363bd8e2f8b5fb1bfda5ee229f903d4aef Mon Sep 17 00:00:00 2001 From: Teng Gao Date: Mon, 21 Jun 2021 11:10:38 +0800 Subject: [PATCH 2/2] update wording --- tb_plugin/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tb_plugin/README.md b/tb_plugin/README.md index 6b95b25b6..d174b0993 100644 --- a/tb_plugin/README.md +++ b/tb_plugin/README.md @@ -370,6 +370,6 @@ one worker is much larger than others, there may be a problem of loading balance ### PyTorch Profiler TensorBoard Plugin 0.2 Release Notes -Note: If the tensorboard launching reports error message "ImportError" and "circular import", -please check your Python version. -The Python 3.9.0, 3.9.1, 3.9.2 has this [bug](https://bugs.python.org/issue43517) and should be avoided using. +Known Issues: This software does not support Python 3.9.0, 3.9.1, 3.9.2. +If the tensorboard launching reports error message "ImportError" and "circular import", +please update your Python to higher version.