We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d22b92 commit 7b7650eCopy full SHA for 7b7650e
src/plugins/intel_gpu/include/intel_gpu/primitives/roll.hpp
@@ -60,7 +60,9 @@ struct roll : primitive_base<roll> {
60
61
auto rhs_casted = downcast<const roll>(rhs);
62
63
- return shift == rhs_casted.shift;
+ return shift == rhs_casted.shift &&
64
+ raw_shift == rhs_casted.raw_shift &&
65
+ raw_axes == rhs_casted.raw_axes;
66
}
67
68
void save(BinaryOutputBuffer& ob) const override {
0 commit comments