We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45cb515 commit e9c83e2Copy full SHA for e9c83e2
backends/cadence/reference/operators/quantized_ops.h
@@ -89,12 +89,8 @@ inline __attribute__((always_inline)) void quantized_linear_per_channel_(
89
// weight comes in shape [out_dim, in_dim]
90
// output comes in empty with shape [leading_dims, out_dim]
91
// Perform matrix multiply (M x N) x (N x P)' => M x P
92
-<<<<<<< HEAD
93
int64_t leading_dims =
94
executorch::runtime::getLeadingDims(src, src.dim() - 1);
95
-=======
96
- int64_t leading_dims = getLeadingDims(src, src.dim() - 1);
97
->>>>>>> 74283da5a (Populate cadence cpu ops (#7165))
98
const int64_t out_dim = weight.size(0); // = out_dim
99
const int64_t in_dim = weight.size(1); // = in_dim
100
0 commit comments