CUDA: add conv2d (#15635)

* CUDA: add conv2d

* CUDA: conv2d - correct formatting and added const
This commit is contained in:
mnehete32
2025-08-29 00:03:03 +05:30
committed by GitHub
parent 6c442f42ff
commit c97dc09391
3 changed files with 181 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
#pragma once
#include "common.cuh"
#define CUDA_CONV2D_BLOCK_SIZE 256
void ggml_cuda_op_conv2d(ggml_backend_cuda_context & ctx, ggml_tensor * dst);