fixed args

Signed-off-by: raver119 <raver119@gmail.com>
master
raver119 2019-09-01 22:06:01 +03:00
parent 00cf28f477
commit c34826da4d
1 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ namespace nd4j {
auto _x = static_cast<unsigned long long>(xBuffer[e]);
auto _y = static_cast<unsigned long long>(yBuffer[e]);
intermediate[omp_get_thread_num()] += hamming_distance(_x ^ _y);
intermediate[omp_get_thread_num()] += hamming_distance(_x, _y);
}
} else if (xEws > 1 && yEws > 1 && x.ordering() == y.ordering()) {
@ -68,7 +68,7 @@ namespace nd4j {
auto _x = static_cast<unsigned long long>(xBuffer[e * xEws]);
auto _y = static_cast<unsigned long long>(yBuffer[e * yEws]);
intermediate[omp_get_thread_num()] += hamming_distance(_x ^ _y);
intermediate[omp_get_thread_num()] += hamming_distance(_x, _y);
}
} else {
PRAGMA_OMP_PARALLEL_FOR
@ -76,7 +76,7 @@ namespace nd4j {
auto _x = static_cast<unsigned long long>(x.e<Nd4jLong>(e));
auto _y = static_cast<unsigned long long>(y.e<Nd4jLong>(e));
intermediate[omp_get_thread_num()] += hamming_distance(_x ^ _y);
intermediate[omp_get_thread_num()] += hamming_distance(_x, _y);
}
}