Skip to content

Commit

Permalink
fixing merge conflict in cuda files
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Jan 8, 2025
1 parent ae93072 commit 8f83390
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/util/cuda_matrix.cu
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ namespace micm
}

template<typename T>
<<<<<<< HEAD
cudaError_t CopyToDevice(CudaMatrixParam& param, const std::vector<T>& h_data)
=======
__global__ void MatrixMaxKernel(T* d_data, std::size_t number_of_elements, T val)
{
std::size_t tid = blockIdx.x * BLOCK_SIZE + threadIdx.x;
Expand Down Expand Up @@ -80,7 +77,6 @@ namespace micm

template<typename T>
cudaError_t CopyToDevice(CudaMatrixParam& param, std::vector<T>& h_data)
>>>>>>> main
{
cudaError_t err = cudaMemcpyAsync(
param.d_data_,
Expand Down

0 comments on commit 8f83390

Please sign in to comment.