"git@developer.sourcefind.cn:gaoqiong/pybind11.git" did not exist on "35fec78606cbedc0d3a4d37674ea9a7329ec8460"
Unverified Commit 97344d66 authored by Sangkug Lym's avatar Sangkug Lym Committed by GitHub
Browse files

TP-RS local reduction: fix lint err (#1520)



* TP-RS local reduction: fix lint err
Signed-off-by: default avatarSangkug Lym <slym@nvidia.com>

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci



---------
Signed-off-by: default avatarSangkug Lym <slym@nvidia.com>
Co-authored-by: default avatarpre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
parent 9654931c
......@@ -2614,7 +2614,7 @@ __global__ void __launch_bounds__(MAX_THREADS / 4)
if (tid >= num_aligned_elements_per_input) {
return;
}
float accum_buf[nvec];
float accum_buf[nvec]; // NOLINT(*)
loader.load(tid, tot_input_size);
#pragma unroll
......@@ -2672,7 +2672,7 @@ __global__ void __launch_bounds__(MAX_THREADS / 4)
if (tid >= num_aligned_elements_per_input) {
return;
}
float accum_buf[nvec];
float accum_buf[nvec]; // NOLINT(*)
loader.load(tid, tot_input_size);
#pragma unroll
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment