Skip to content

Commit 3b02127

Browse files
committed
Adjust CS names
Summary: Ref T16509 TF2.4 Only Test Plan: CI Reviewers: #tensorflow, #framework_ip_review_-_any_oss_or_third-party_code_use_has_been_approved, simonl, vladimirm, samuelh Reviewed By: #tensorflow, #framework_ip_review_-_any_oss_or_third-party_code_use_has_been_approved, vladimirm, samuelh Subscribers: samuelh Maniphest Tasks: T16509 Differential Revision: https://phabricator.sourcevertex.net/D49178
1 parent c4a2f46 commit 3b02127

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

tensorflow/compiler/plugin/poplar/tests/fuse_ops_test.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,6 @@ def network(x, y1, y2):
839839
'__seed*',
840840
'/negate/Op/Negate',
841841
'ExpandDims/input/multi-update-add.3/multiUpdateAdd',
842-
'ExpandDims/input/multi-update-add.3/multiUpdateAdd/*/Fill',
843842
'[cC]opy*/OnTileCopy',
844843
'vs/Gather*/multi-slice',
845844
'vs/add/add*/Add',
@@ -906,7 +905,6 @@ def network(x, y1, y2, lr):
906905
'__seed*',
907906
'/negate/Op/Negate',
908907
'ExpandDims/input/multi-update-add.3/multiUpdateAdd',
909-
'ExpandDims/input/multi-update-add.3/multiUpdateAdd/*/Fill',
910908
'[cC]opy*/OnTileCopy',
911909
'vs/Gather*/multi-slice',
912910
'vs/add/add*/Add',
@@ -967,15 +965,13 @@ def network(x, y, la, lr):
967965
'GradientDescent/update_vs/w/Neg/negate*/Op/Negate',
968966
'GradientDescent/update_vs/w/mul/fusion*/Op/Multiply',
969967
'GradientDescent/update_vs/w/ResourceScatterAdd/multi-update-add*/multiUpdateAdd',
970-
'GradientDescent/update_vs/w/ResourceScatterAdd/multi-update-add*/multiUpdateAdd/*/Fill',
971968
'gradients/vs/absolute_difference/Abs_grad/Sign',
972969
'gradients/vs/absolute_difference/Abs_grad/mul/fusion',
973970
'vs/embedding_lookup/multi-slice',
974971
'vs/absolute_difference/Sub/subtract.*/Subtract',
975972
'vs/absolute_difference/Abs/abs.*/Op/Absolute',
976973
'vs/absolute_difference/Sum/reduce',
977974
'vs/absolute_difference/value/multiply',
978-
'host-exchange-local-copy-*/OnTileCopy-0',
979975
]
980976
# pylint: enable=line-too-long
981977
self.assert_all_compute_sets_and_list(report, ok)
@@ -1034,12 +1030,12 @@ def network(x, y1, y2, la, lr):
10341030
report = pva.openReport(report_helper.find_report())
10351031
# pylint: disable=line-too-long
10361032
ok = [
1033+
'[cC]opy',
10371034
'__seed*',
10381035
'gradients/vs/absolute_difference/Abs_grad/Sign',
10391036
'gradients/vs/absolute_difference/Abs_grad/mul/fusion',
10401037
'/negate/Op/Negate',
10411038
'gradients/vs/Reshape_grad/UnsortedSegmentSum/multi-update-add*/multiUpdateAdd',
1042-
'gradients/vs/Reshape_grad/UnsortedSegmentSum/multi-update-add*/multiUpdateAdd/*/Fill',
10431039
'vs/embedding_lookup*/multi-slice',
10441040
'vs/absolute_difference/Sub/subtract.*/Subtract',
10451041
'vs/absolute_difference/Abs/abs.*/Op/Absolute',

tensorflow/compiler/plugin/poplar/tests/gather_simplifier_embedding_lookup_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,9 @@ def network(w, y):
8787
ok = [
8888
'embedding_lookup/multi-slice/output/multiSlice/*',
8989
'__seed/set/setMasterSeed',
90-
'host-exchange-local-copy-',
9190
]
9291
# pylint: enable=line-too-long
93-
self.assert_all_compute_sets_and_list(report, ok)
92+
self.assert_compute_sets_contain_list(report, ok)
9493

9594

9695
if __name__ == "__main__":

0 commit comments

Comments
 (0)