Skip to content

Commit e51a081

Browse files
committed
rename
Signed-off-by: Andrew Duffy <andrew@a10y.dev>
1 parent 9fd5b97 commit e51a081

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

vortex-cuda/kernels/src/alp.cu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// only encoded as i32, and f64 is only encoded as i64. The i64 → double cast
1414
// is lossless for all values ALP can produce.
1515
template <typename EncT, typename FloatT>
16-
__device__ void _alp_device(const EncT *__restrict in,
16+
__device__ void alp_device(const EncT *__restrict in,
1717
FloatT *__restrict out,
1818
FloatT f,
1919
FloatT e,
@@ -83,7 +83,7 @@ __device__ void _alp_device(const EncT *__restrict in,
8383
int thread_idx = threadIdx.x; \
8484
auto in = full_in + (blockIdx.x * 1024); \
8585
auto out = full_out + (blockIdx.x * 1024); \
86-
_alp_device<EncT, FloatT>(in, out, f, e, array_len, thread_idx, patches); \
86+
alp_device<EncT, FloatT>(in, out, f, e, array_len, thread_idx, patches); \
8787
}
8888

8989
// The only ALPInt bindings produced by the encoder are (f32, i32) and (f64, i64).

0 commit comments

Comments
 (0)