We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02be04c commit 5af3b34Copy full SHA for 5af3b34
1 file changed
dpnp/backend/kernels/dpnp_krnl_mathematical.cpp
@@ -89,6 +89,7 @@ class dpnp_cross_c_kernel;
89
template <typename _DataType_input1, typename _DataType_input2, typename _DataType_output>
90
void dpnp_cross_c(void* array1_in, void* array2_in, void* result1, size_t size)
91
{
92
+ (void)size; // avoid warning unused variable
93
_DataType_input1* array1 = reinterpret_cast<_DataType_input1*>(array1_in);
94
_DataType_input2* array2 = reinterpret_cast<_DataType_input2*>(array2_in);
95
_DataType_output* result = reinterpret_cast<_DataType_output*>(result1);
0 commit comments