blob: cfe10dbe3c6ac84db11e745ae18973294556a622 [file] [log] [blame]
model = Model()
i1 = Input("input", "TENSOR_FLOAT32", "{3}")
begins = Parameter("begins", "TENSOR_INT32", "{1}", [-1])
ends = Parameter("ends", "TENSOR_INT32", "{1}", [-4])
strides = Parameter("strides", "TENSOR_INT32", "{1}", [-1])
beginMask = Int32Scalar("beginMask", 0)
endMask = Int32Scalar("endMask", 0)
output = Output("output", "TENSOR_FLOAT32", "{3}")
model = model.Operation("STRIDED_SLICE", i1, begins, ends, strides, beginMask, endMask).To(output)
# Example 1. Input in operand 0,
input0 = {i1: # input 0
[1, 2, 3]}
output0 = {output: # output 0
[3, 2, 1]}
# Instantiate an example
Example((input0, output0))