Skip to content

Commit 1a47861

Browse files
committed
Fix warnings
1 parent 7b71431 commit 1a47861

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/reference/include/openvino/reference/adaptive_rkv_diversity.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ class AdaptiveRKVDiversityCalculator {
166166
reinterpret_cast<char*>(evictable_subset_buf.get()),
167167
evictable_subset_shape,
168168
sizeof(T),
169-
/* starts = */ {m_start_size, m_start_size},
169+
/* starts = */ {static_cast<int64_t>(m_start_size), static_cast<int64_t>(m_start_size)},
170170
/* steps = */ {1, 1},
171171
/* axes = */ {1, 2}); // stops are defined by output shape
172172
cos_similar_buf.reset();

0 commit comments

Comments
 (0)