You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by ni...@apache.org on 2019/03/24 16:08:58 UTC

[systemml] 01/02: [SYSTEMML-540] Invoke update immediately after backward call at the script-level.

This is an automated email from the ASF dual-hosted git repository.

niketanpansare pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/systemml.git

commit 4032594bc737d41efe06606e801dd61be27413ee
Author: Niketan Pansare <np...@us.ibm.com>
AuthorDate: Sat Mar 23 21:51:45 2019 -0700

    [SYSTEMML-540] Invoke update immediately after backward call at the script-level.
    
    - This reduces the chance of unnecessary evictions especially when there are statement block cuts.
    - The configuration property `perform_fused_backward_update` allows the user to toggle this behavior and control the script-generation process.
    - Also, updated the release creation document to ensure that untracked files are not included in the artifacts.
    - For Resnet-200, the eviction time was reduced from 173.488 seconds to 60.048 seconds with minibatch size of 96.
---
 release-creation-process.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/release-creation-process.md b/release-creation-process.md
index 3115390..bf05000 100644
--- a/release-creation-process.md
+++ b/release-creation-process.md
@@ -42,6 +42,9 @@ Step 1: Prepare the release.
 
 	# Extract latest code to a directory
 	<GitRepoHome>
+	
+	# Check if there are any untracked files (created by the unit tests) and remove them to avoid packing them in the artifacts
+	git status
 
 	# Go to dev/release directory
 	cd <GitRepoHome>/dev/release