Skip to content
Snippets Groups Projects
Commit 59a7e140 authored by Ewan Barr's avatar Ewan Barr
Browse files

Unpacker typos

parent 9d537db4
No related branches found
No related tags found
No related merge requests found
......@@ -10,10 +10,10 @@ namespace edd {
namespace kernels {
__global__
void unpack_edd_12bit_to_float32(uint64_t* __restrict__ in, float* __restrict__ out, int n);
void unpack_edd_12bit_to_float32(uint64_t const* __restrict__ in, float* __restrict__ out, int n);
__global__
void unpack_edd_8bit_to_float32(uint64_t* __restrict__ in, float* __restrict__ out, int n);
void unpack_edd_8bit_to_float32(uint64_t const* __restrict__ in, float* __restrict__ out, int n);
}
......
......@@ -22,7 +22,7 @@ __device__ __forceinline__ uint64_t swap64(uint64_t x)
}
__global__
void unpack_edd_12bit_to_float32(uint64_t* __restrict__ in, float* __restrict__ out, int n)
void unpack_edd_12bit_to_float32(uint64_t const* __restrict__ in, float* __restrict__ out, int n)
{
/**
* Note: This kernels will not work with more than 512 threads.
......@@ -74,7 +74,7 @@ void unpack_edd_12bit_to_float32(uint64_t* __restrict__ in, float* __restrict__
}
__global__
void unpack_edd_8bit_to_float32(uint64_t* __restrict__ in, float* __restrict__ out, int n)
void unpack_edd_8bit_to_float32(uint64_t const* __restrict__ in, float* __restrict__ out, int n)
{
/**
* Note: This kernels will not work with more than 512 threads.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment