We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12d7518 commit 9c5cf60Copy full SHA for 9c5cf60
1 file changed
backends/cadence/fusion_g3/operators/op_permute_copy.cpp
@@ -105,8 +105,8 @@ Tensor& permute_copy_out(
105
signed char* out_data = out.mutable_data_ptr<signed char>();
106
const signed char* const inp_data = in.const_data_ptr<signed char>();
107
108
- if (((out.scalar_type() == in.scalar_type()) &&
109
- (out.scalar_type() == ScalarType::Int) ||
+ if ((out.scalar_type() == in.scalar_type()) &&
+ ((out.scalar_type() == ScalarType::Int) ||
110
(out.scalar_type() == ScalarType::Short) ||
111
(out.scalar_type() == ScalarType::Char) ||
112
(out.scalar_type() == ScalarType::UInt32) ||
0 commit comments