blob: 5545136ac2e4178cb1bc38d95f40f36385ee4592 [file] [log] [blame]
func.func @main(
%arg0: tensor<1x8x8x3xf32> {iree.identifier = "a"},
%arg1: tensor<1x8x8x3xf32> {iree.identifier = "b"},
%arg2: tensor<1x8x8x3xf32> {iree.identifier = "c"},
%arg3: tensor<1x8x8x3xf32> {iree.identifier = "d"}
) -> (
tensor<1x8x8x3xf32> {iree.identifier = "x"},
tensor<1x8x8x3xf32> {iree.identifier = "y"}
) {
%0 = arith.addf %arg1, %arg2 : tensor<1x8x8x3xf32>
%1 = arith.addf %arg0, %0 : tensor<1x8x8x3xf32>
%2 = arith.addf %arg3, %0 : tensor<1x8x8x3xf32>
return %1, %2 : tensor<1x8x8x3xf32>, tensor<1x8x8x3xf32>
}