sumrows.cu 976 B

1234567891011121314151617181920212223242526
  1. #include "sumrows.cuh"
  2. void sum_rows_f32_cuda(const float * x, float * dst, const int ncols, const int nrows, cudaStream_t stream) {
  3. const dim3 block_dims(WARP_SIZE, 1, 1);
  4. const dim3 block_nums(nrows, 1, 1);
  5. reduce_rows_f32</*norm*/false><<<block_nums, block_dims, 0, stream>>>(x, dst, ncols);
  6. }
  7. void ggml_cuda_op_sum_rows(ggml_backend_cuda_context & ctx, ggml_tensor * dst) {
  8. const ggml_tensor * src0 = dst->src[0];
  9. const float * src0_d = (const float *)src0->data;
  10. float * dst_d = (float *)dst->data;
  11. cudaStream_t stream = ctx.stream();
  12. GGML_ASSERT(src0->type == GGML_TYPE_F32);
  13. GGML_ASSERT( dst->type == GGML_TYPE_F32);
  14. GGML_ASSERT(ggml_is_contiguous(src0));
  15. const int64_t ncols = src0->ne[0];
  16. const int64_t nrows = ggml_nrows(src0);
  17. const dim3 block_dims(WARP_SIZE, 1, 1);
  18. const dim3 block_nums(nrows, 1, 1);
  19. reduce_rows_f32</*norm=*/false><<<block_nums, block_dims, 0, stream>>>(src0_d, dst_d, ncols);
  20. }