blob: 7b8c99ada5bfb7e1d54c37ec1d8637b44e281014 [file] [log] [blame]
func.func @logical_right_shift_16() {
%0 = util.unfoldable_constant dense<[5, 8, 9, 256]> : tensor<4xi16>
%1 = util.unfoldable_constant dense<[0, 1, 2, 8]> : tensor<4xi16>
%result = "tosa.logical_right_shift"(%0, %1) : (tensor<4xi16>, tensor<4xi16>) -> tensor<4xi16>
check.expect_eq_const(%result, dense<[5, 4, 2, 1]> : tensor<4xi16>) : tensor<4xi16>
return
}