Skip to content

Commit

Permalink
Fix wrong parameter types in gpu kernels
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzgoebel committed Oct 26, 2020
1 parent d8eb749 commit 0c996eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/matrix/dense_kernels.hpp.inc
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ __global__ __launch_bounds__(default_block_size) void make_complex(
template <typename ValueType>
__global__ __launch_bounds__(default_block_size) void get_real(
size_type num_rows, size_type num_cols, const ValueType *__restrict__ in,
size_type stride_in, to_complex<ValueType> *__restrict__ out,
size_type stride_in, remove_complex<ValueType> *__restrict__ out,
size_type stride_out)
{
const auto tidx = thread::get_thread_id_flat();
Expand All @@ -572,7 +572,7 @@ __global__ __launch_bounds__(default_block_size) void get_real(
template <typename ValueType>
__global__ __launch_bounds__(default_block_size) void get_imag(
size_type num_rows, size_type num_cols, const ValueType *__restrict__ in,
size_type stride_in, to_complex<ValueType> *__restrict__ out,
size_type stride_in, remove_complex<ValueType> *__restrict__ out,
size_type stride_out)
{
const auto tidx = thread::get_thread_id_flat();
Expand Down

0 comments on commit 0c996eb

Please sign in to comment.