From 5ff4c86ca993d9da49931b7e5f18e85618d5363e Mon Sep 17 00:00:00 2001 From: limingxing517 Date: Thu, 2 Feb 2023 08:20:34 +0000 Subject: [PATCH 1/9] =?UTF-8?q?=E5=8C=BA=E5=88=86fp32?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: limingxing517 --- .../test/train_ID3058_MMoE_performance_1p.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_performance_1p.sh b/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_performance_1p.sh index 77cce685c..f4fd13612 100644 --- a/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_performance_1p.sh +++ b/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_performance_1p.sh @@ -133,7 +133,12 @@ echo "E2E Training Duration sec : $e2e_time" #训练用例信息,不需要修改 BatchSize=${batch_size} DeviceType=`uname -m` -CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'perf' + +if [[ $precision_mode == "must_keep_origin_dtype" ]];then + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'perf'_'fp32' +else + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'perf' +fi ##获取性能数据,不需要修改 #吞吐量 -- Gitee From c79851b23c0bf79c592ba166b6392092fdd338a3 Mon Sep 17 00:00:00 2001 From: limingxing517 Date: Thu, 2 Feb 2023 08:22:03 +0000 Subject: [PATCH 2/9] =?UTF-8?q?=E5=8C=BA=E5=88=86fp32?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: limingxing517 --- .../test/train_ID3058_MMoE_full_1p.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_full_1p.sh b/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_full_1p.sh index 57eb2a9c5..e6fe82408 100644 --- a/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_full_1p.sh +++ b/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_full_1p.sh @@ -135,7 +135,11 @@ echo "E2E Training Duration sec : $e2e_time" #训练用例信息,不需要修改 BatchSize=${batch_size} DeviceType=`uname -m` -CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'acc' +if [[ $precision_mode == "must_keep_origin_dtype" ]];then + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'acc'_'fp32' +else + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'acc' +fi ##获取性能数据,不需要修改 #吞吐量 -- Gitee From 651c0796cf0dd8e24b26ba58795eefd68f6b71c8 Mon Sep 17 00:00:00 2001 From: limingxing517 Date: Thu, 2 Feb 2023 08:24:00 +0000 Subject: [PATCH 3/9] =?UTF-8?q?=E5=8C=BA=E5=88=86fp32?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: limingxing517 --- .../test/train_ID3058_MMoE_performance_1p_RT2.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_performance_1p_RT2.sh b/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_performance_1p_RT2.sh index 6ea8b9c07..18383b8ea 100644 --- a/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_performance_1p_RT2.sh +++ b/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_performance_1p_RT2.sh @@ -138,7 +138,11 @@ echo "E2E Training Duration sec : $e2e_time" #训练用例信息,不需要修改 BatchSize=${batch_size} DeviceType=`uname -m` -CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'RT2'_'perf' +if [[ $precision_mode == "must_keep_origin_dtype" ]];then + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'RT2'_'fp32'_'perf' +else + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'RT2'_'perf' +fi ##获取性能数据,不需要修改 #吞吐量 -- Gitee From 642a3da1e95699ef88b2224c6a85ce9380e889fa Mon Sep 17 00:00:00 2001 From: limingxing517 Date: Thu, 2 Feb 2023 08:26:17 +0000 Subject: [PATCH 4/9] =?UTF-8?q?=E5=8C=BA=E5=88=86fp32?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: limingxing517 --- .../test/train_ID3058_MMoE_performance_1p.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_performance_1p.sh b/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_performance_1p.sh index f4fd13612..e2b5df899 100644 --- a/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_performance_1p.sh +++ b/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_performance_1p.sh @@ -135,7 +135,7 @@ BatchSize=${batch_size} DeviceType=`uname -m` if [[ $precision_mode == "must_keep_origin_dtype" ]];then - CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'perf'_'fp32' + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'fp32'_'perf' else CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'perf' fi -- Gitee From f87af00faa3363ba4033863871a565c583dcbee1 Mon Sep 17 00:00:00 2001 From: limingxing517 Date: Thu, 2 Feb 2023 08:27:44 +0000 Subject: [PATCH 5/9] =?UTF-8?q?=E5=8C=BA=E5=88=86fp32?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: limingxing517 --- .../test/train_ID3058_MMoE_full_1p.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_full_1p.sh b/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_full_1p.sh index e6fe82408..08cdbbf5a 100644 --- a/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_full_1p.sh +++ b/TensorFlow/built-in/recommendation/DeepCTR_Series_for_TensorFlow/test/train_ID3058_MMoE_full_1p.sh @@ -136,7 +136,7 @@ echo "E2E Training Duration sec : $e2e_time" BatchSize=${batch_size} DeviceType=`uname -m` if [[ $precision_mode == "must_keep_origin_dtype" ]];then - CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'acc'_'fp32' + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'fp32'_'acc' else CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'acc' fi -- Gitee From 171830ba1d5e7c092ebaebe61d6331f28a2349ee Mon Sep 17 00:00:00 2001 From: limingxing517 Date: Thu, 2 Feb 2023 08:48:39 +0000 Subject: [PATCH 6/9] =?UTF-8?q?=E5=8C=BA=E5=88=86fp32?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: limingxing517 --- .../test/train_performance_1p.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_performance_1p.sh b/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_performance_1p.sh index 506c1fd93..d845dde1c 100644 --- a/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_performance_1p.sh +++ b/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_performance_1p.sh @@ -128,7 +128,11 @@ echo "E2E Training Duration sec : $e2e_time" #训练用例信息,不需要修改 BatchSize=${batch_size} DeviceType=`uname -m` -CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'perf' +if [[ $precision_mode == "must_keep_origin_dtype" ]];then + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'fp32'_'perf' +else + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'perf' +fi echo "CaseName : $CaseName" ##获取性能数据 -- Gitee From 66c5c10570c30be3850b4f646ede3e0137df3a4c Mon Sep 17 00:00:00 2001 From: limingxing517 Date: Thu, 2 Feb 2023 08:52:59 +0000 Subject: [PATCH 7/9] =?UTF-8?q?=E5=8C=BA=E5=88=86fp32?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: limingxing517 --- .../WideDeep_ID2712_for_TensorFlow/test/train_full_1p.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_full_1p.sh b/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_full_1p.sh index 5d93f3a41..4a8f6ad7b 100644 --- a/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_full_1p.sh +++ b/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_full_1p.sh @@ -135,7 +135,11 @@ echo "E2E Training Duration sec : $e2e_time" #训练用例信息,不需要修改 BatchSize=${batch_size} DeviceType=`uname -m` -CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'acc' +if [[ $precision_mode == "must_keep_origin_dtype" ]];then + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'fp32'_'acc' +else + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'acc' +fi ##获取性能数据 #吞吐量,不需要修改 -- Gitee From a382abaa460b09163f3efff0cc3c6b1c1473e8a8 Mon Sep 17 00:00:00 2001 From: limingxing517 Date: Thu, 2 Feb 2023 08:54:23 +0000 Subject: [PATCH 8/9] =?UTF-8?q?=E5=8C=BA=E5=88=86fp32?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: limingxing517 --- .../test/train_performance_8p.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_performance_8p.sh b/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_performance_8p.sh index abfb0abcd..483101a81 100644 --- a/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_performance_8p.sh +++ b/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_performance_8p.sh @@ -135,7 +135,11 @@ echo "E2E Training Duration sec : $e2e_time" #训练用例信息,不需要修改 BatchSize=${batch_size} DeviceType=`uname -m` -CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'perf' +if [[ $precision_mode == "must_keep_origin_dtype" ]];then + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'fp32'_'perf' +else + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'perf' +fi echo "CaseName : $CaseName" ##获取性能数据 -- Gitee From 5713bab61ee89462bf7391df1f0d713f70498e62 Mon Sep 17 00:00:00 2001 From: limingxing517 Date: Thu, 2 Feb 2023 08:55:31 +0000 Subject: [PATCH 9/9] =?UTF-8?q?=E5=8C=BA=E5=88=86fp32?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: limingxing517 --- .../WideDeep_ID2712_for_TensorFlow/test/train_full_8p.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_full_8p.sh b/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_full_8p.sh index d74293f30..e58e09555 100644 --- a/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_full_8p.sh +++ b/TensorFlow/built-in/recommendation/WideDeep_ID2712_for_TensorFlow/test/train_full_8p.sh @@ -154,7 +154,11 @@ echo "E2E Training Duration sec : $e2e_time" #训练用例信息,不需要修改 BatchSize=${batch_size} DeviceType=`uname -m` -CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'acc' +if [[ $precision_mode == "must_keep_origin_dtype" ]];then + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'fp32'_'acc' +else + CaseName=${Network}_bs${BatchSize}_${RANK_SIZE}'p'_'acc' +fi ##获取性能数据 #吞吐量,不需要修改 -- Gitee