From 5d225316edf1f1d81104de82ecbb6bf94c7d105a Mon Sep 17 00:00:00 2001 From: SeungHui Youn <61981457+zetwhite@users.noreply.github.com> Date: Fri, 6 Sep 2024 16:27:29 +0900 Subject: [PATCH] [res] Update operand name of Gather_SparseToDense_AddV2 recipe (#13943) This PR updates operand name of SparseToDense in Net_Gather_SparseToDense_AddV2_000.recipe. ONE-DCO-1.0-Signed-off-by: seunghui youn --- .../test.recipe | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/res/TensorFlowLiteRecipes/Net_Gather_SparseToDense_AddV2_000/test.recipe b/res/TensorFlowLiteRecipes/Net_Gather_SparseToDense_AddV2_000/test.recipe index 31a725193d4..9840453b713 100644 --- a/res/TensorFlowLiteRecipes/Net_Gather_SparseToDense_AddV2_000/test.recipe +++ b/res/TensorFlowLiteRecipes/Net_Gather_SparseToDense_AddV2_000/test.recipe @@ -16,7 +16,7 @@ operand { shape { dim: 1 } } operand { - name: "shape_sparse" + name: "indices_sparse2dense" type: INT64 shape { dim: 1 dim: 1 } filler { @@ -25,19 +25,19 @@ operand { } } operand { - name: "values_sparse" + name: "shape_sparse2dense" type: INT64 shape { dim: 1 } filler { tag: "explicit" arg: "1" arg: "2" } } operand { - name: "defalut_value_sparse" + name: "defalut_value_sparse2dense" type: INT64 shape { } filler { tag: "explicit" arg: "1" arg: "2" } } operand { - name: "ofm_sparse" + name: "ofm_sparse2dense" type: INT64 shape { dim: 3 } } @@ -92,15 +92,15 @@ operation { sparse_to_dense_options { validate_indices: false } - input: "shape_sparse" - input: "values_sparse" + input: "indices_sparse2dense" + input: "shape_sparse2dense" input: "ofm_gather" - input: "defalut_value_sparse" - output: "ofm_sparse" + input: "defalut_value_sparse2dense" + output: "ofm_sparse2dense" } operation { type: "Custom" - input: "ofm_sparse" + input: "ofm_sparse2dense" input: "add_v2_2" output: "ofm_add_v2" custom_code: "AddV2"