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) ...@@ -2614,7 +2614,7 @@ __global__ void __launch_bounds__(MAX_THREADS / 4)
if (tid >= num_aligned_elements_per_input) { if (tid >= num_aligned_elements_per_input) {
return; return;
} }
float accum_buf[nvec]; float accum_buf[nvec]; // NOLINT(*)
loader.load(tid, tot_input_size); loader.load(tid, tot_input_size);
#pragma unroll #pragma unroll
...@@ -2672,7 +2672,7 @@ __global__ void __launch_bounds__(MAX_THREADS / 4) ...@@ -2672,7 +2672,7 @@ __global__ void __launch_bounds__(MAX_THREADS / 4)
if (tid >= num_aligned_elements_per_input) { if (tid >= num_aligned_elements_per_input) {
return; return;
} }
float accum_buf[nvec]; float accum_buf[nvec]; // NOLINT(*)
loader.load(tid, tot_input_size); loader.load(tid, tot_input_size);
#pragma unroll #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