From: Devansh Bansal/SNAP /SRI-Bangalore/Engineer/삼성전자 Date: Thu, 3 Jan 2019 08:36:34 +0000 (+0530) Subject: Adding quant8 gtest for split (#4046) X-Git-Tag: 0.3~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7b595ed72c91b9dd415cd8e455810bcb075089aa;p=platform%2Fcore%2Fml%2Fnnfw.git Adding quant8 gtest for split (#4046) This patch adds quant8 gtest for split. Signed-off-by: b.devansh --- diff --git a/tests/nnapi/specs/Ex/split_ex_4D_quant8.mod.py b/tests/nnapi/specs/Ex/split_ex_4D_quant8.mod.py new file mode 100644 index 0000000..46cb3ab --- /dev/null +++ b/tests/nnapi/specs/Ex/split_ex_4D_quant8.mod.py @@ -0,0 +1,20 @@ +# model +model = Model() +i1 = Input("op1", "TENSOR_QUANT8_ASYMM", "{2,2,2,2}, 0.5f, 1") +axis = Int32Scalar("axis", 0) +i2 = Output("op2", "TENSOR_QUANT8_ASYMM", "{1,2,2,2}, 0.5f, 1") +i3 = Output("op3", "TENSOR_QUANT8_ASYMM", "{1,2,2,2}, 0.5f, 1") +model = model.Operation("SPLIT_EX", axis, i1).To([i2, i3]) + +# Example 1. Input in operand 0, +input0 = {i1: # input 0 + [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]} + +output0 = { + i2: # output 0 + [1, 2, 3, 4, 5, 6, 7, 8], + i3: # output 1 + [9, 10, 11, 12, 13, 14, 15, 16]} + +# Instantiate an example +Example((input0, output0))