Skip to content

Commit 7b7650e

Browse files
authored
[GPU] Add conditions to roll operator== (openvinotoolkit#24098)
### Details: - *Add conditions to roll operator==.* - *The conditions affected operations on Windows only.* ### Tickets: - *137794*
1 parent 2d22b92 commit 7b7650e

File tree

1 file changed

+3
-1
lines changed
  • src/plugins/intel_gpu/include/intel_gpu/primitives

1 file changed

+3
-1
lines changed

src/plugins/intel_gpu/include/intel_gpu/primitives/roll.hpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ struct roll : primitive_base<roll> {
6060

6161
auto rhs_casted = downcast<const roll>(rhs);
6262

63-
return shift == rhs_casted.shift;
63+
return shift == rhs_casted.shift &&
64+
raw_shift == rhs_casted.raw_shift &&
65+
raw_axes == rhs_casted.raw_axes;
6466
}
6567

6668
void save(BinaryOutputBuffer& ob) const override {

0 commit comments

Comments
 (0)