From 615e7732b6fb19d94e561da7b5926e6a23fa1420 Mon Sep 17 00:00:00 2001 From: Geoffrey Yu Date: Tue, 28 Jan 2020 21:38:48 -0500 Subject: [PATCH] [Release][CLI] Bug fix release v0.2.1 This release contains bug fixes and performance enhancements: - Fix leftover function name changes from refactoring (9538245) - Fixed an issue that caused extra memory to be tracked (0bb9403) - Avoid unnecessarily cloning tensors during backward pass profiling (1a40832) - Avoid overwriting report output files if they exist (e6ed70e) - Exclude unrelated dunders from being tracked (15cd27c) --- cli/skyline/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/skyline/__init__.py b/cli/skyline/__init__.py index 3e64246..52c1ae9 100644 --- a/cli/skyline/__init__.py +++ b/cli/skyline/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.0" +__version__ = "0.2.1" __description__ = "Interactive in-editor performance profiling, visualization, and debugging for PyTorch neural networks."