blob: 73ddc45b22e90360c848b231cc761f4c8c7a51c9 [file] [log] [blame]
#
# Copyright (C) 2018 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
input0 = Input("input0", "TENSOR_FLOAT16", "{1, 2}")
input1 = Input("input1", "TENSOR_FLOAT16", "{2, 2}")
activation = 0
output0 = Output("output0", "TENSOR_FLOAT16", "{2, 2}")
model = Model().Operation("SUB", input0, input1, activation).To(output0)
input0_values = [10, 20]
input1_values = [0.1, 0.2,
0.3, 0.4]
output_values = [9.9, 19.8,
9.7, 19.6]
Example({
input0: input0_values,
input1: input1_values,
output0: output_values,
})