@@ -10,6 +10,13 @@ static __device__ void cpy_1_f32_f32(const char * cxi, char * cdsti) {
10
10
*dsti = *xi;
11
11
}
12
12
13
+ static __device__ void cpy_1_f32_bf16 (const char * cxi, char * cdsti) {
14
+ const float * xi = (const float *) cxi;
15
+ nv_bfloat16 * dsti = (nv_bfloat16 *) cdsti;
16
+
17
+ *dsti = *xi;
18
+ }
19
+
13
20
static __device__ void cpy_1_f32_f16 (const char * cxi, char * cdsti) {
14
21
const float * xi = (const float *) cxi;
15
22
half * dsti = (half *) cdsti;
@@ -436,6 +443,16 @@ static void ggml_cpy_f32_f32_cuda(
436
443
(cx, cdst, ne, ne00, ne01, ne02, nb00, nb01, nb02, nb03, ne10, ne11, ne12, nb10, nb11, nb12, nb13, cdst_indirect, graph_cpynode_index++);
437
444
}
438
445
446
+ static void ggml_cpy_f32_bf16_cuda (
447
+ const char * cx, char * cdst, const int ne,
448
+ const int ne00, const int ne01, const int ne02, const int nb00, const int nb01, const int nb02,
449
+ const int nb03, const int ne10, const int ne11, const int ne12, const int nb10, const int nb11, const int nb12, const int nb13, cudaStream_t stream, char ** cdst_indirect, int & graph_cpynode_index) {
450
+
451
+ const int num_blocks = (ne + CUDA_CPY_BLOCK_SIZE - 1 ) / CUDA_CPY_BLOCK_SIZE;
452
+ cpy_f32_f16<cpy_1_f32_bf16><<<num_blocks, CUDA_CPY_BLOCK_SIZE, 0 , stream>>>
453
+ (cx, cdst, ne, ne00, ne01, ne02, nb00, nb01, nb02, nb03, ne10, ne11, ne12, nb10, nb11, nb12, nb13, cdst_indirect, graph_cpynode_index++);
454
+ }
455
+
439
456
static void ggml_cpy_f32_f16_cuda (
440
457
const char * cx, char * cdst, const int ne,
441
458
const int ne00, const int ne01, const int ne02, const int nb00, const int nb01, const int nb02,
@@ -666,6 +683,8 @@ void ggml_cuda_cpy(ggml_backend_cuda_context & ctx, const ggml_tensor * src0, gg
666
683
CUDA_CHECK (cudaMemcpyAsync (src1_ddc, src0_ddc, ggml_nbytes (src0), cudaMemcpyDeviceToDevice, main_stream));
667
684
} else if (src0->type == GGML_TYPE_F32 && src1->type == GGML_TYPE_F32) {
668
685
ggml_cpy_f32_f32_cuda (src0_ddc, src1_ddc, ne, ne00, ne01, ne02, nb00, nb01, nb02, nb03, ne10, ne11, ne12, nb10, nb11, nb12, nb13, main_stream, dest_ptrs_d, graph_cpynode_index);
686
+ } else if (src0->type == GGML_TYPE_F32 && src1->type == GGML_TYPE_BF16) {
687
+ ggml_cpy_f32_bf16_cuda (src0_ddc, src1_ddc, ne, ne00, ne01, ne02, nb00, nb01, nb02, nb03, ne10, ne11, ne12, nb10, nb11, nb12, nb13, main_stream, dest_ptrs_d, graph_cpynode_index);
669
688
} else if (src0->type == GGML_TYPE_F32 && src1->type == GGML_TYPE_F16) {
670
689
ggml_cpy_f32_f16_cuda (src0_ddc, src1_ddc, ne, ne00, ne01, ne02, nb00, nb01, nb02, nb03, ne10, ne11, ne12, nb10, nb11, nb12, nb13, main_stream, dest_ptrs_d, graph_cpynode_index);
671
690
} else if (src0->type == GGML_TYPE_F32 && src1->type == GGML_TYPE_Q8_0) {
@@ -723,6 +742,8 @@ void* ggml_cuda_cpy_fn(const ggml_tensor * src0, ggml_tensor * src1) {
723
742
return nullptr ;
724
743
} else if (src0->type == GGML_TYPE_F32 && src1->type == GGML_TYPE_F32) {
725
744
return (void *) cpy_f32_f16<cpy_1_f32_f32>;
745
+ } else if (src0->type == GGML_TYPE_F32 && src1->type == GGML_TYPE_BF16) {
746
+ return (void *) cpy_f32_f16<cpy_1_f32_bf16>;
726
747
} else if (src0->type == GGML_TYPE_F32 && src1->type == GGML_TYPE_F16) {
727
748
return (void *) cpy_f32_f16<cpy_1_f32_f16>;
728
749
} else if (src0->type == GGML_TYPE_F32 && src1->type == GGML_TYPE_BF16) {
0 commit comments