SWDEV-503089 - Fix and enable disabled HIP tests from math group (#1319)
* SWDEV-503089 - Fix and enable disabled HIP tests from math group * SWDEV-503089 - Move single precision reduced run to a common function
This commit is contained in:
committed by
GitHub
orang tua
ee48f6221d
melakukan
da9bb4efae
@@ -688,7 +688,7 @@ __global__ void __hiloint2double_kernel(double* const ys, const size_t num_xs, i
|
||||
const auto tid = cg::this_grid().thread_rank();
|
||||
const auto stride = cg::this_grid().size();
|
||||
|
||||
for (auto i = tid; i < num_xs; i += stride) {
|
||||
for (size_t i = tid; i < num_xs; i += stride) {
|
||||
ys[i] = __hiloint2double(x1s[i], x2s[i]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user