//------------------------------------------------------------------------------ // GB_jit_kernel_subassign_05d.c: C = scalar, when C is dense //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2023, All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 //------------------------------------------------------------------------------ // Method 05d: C(:,:) = scalar ; no S, C is dense // M: present // Mask_comp: false // Mask_struct: true or false // C_replace: false // accum: NULL // A: scalar, already cast to C->type // S: none // I: NULL // J: NULL // C can have any sparsity structure, but it must be entirely dense with // all entries present. GB_JIT_GLOBAL GB_JIT_KERNEL_SUBASSIGN_PROTO (GB_jit_kernel) ; GB_JIT_GLOBAL GB_JIT_KERNEL_SUBASSIGN_PROTO (GB_jit_kernel) { #ifdef GB_JIT_RUNTIME // get callback functions GB_free_memory_f GB_free_memory = my_callback->GB_free_memory_func ; GB_malloc_memory_f GB_malloc_memory = my_callback->GB_malloc_memory_func ; GB_ek_slice_f GB_ek_slice = my_callback->GB_ek_slice_func ; GB_werk_pop_f GB_werk_pop = my_callback->GB_werk_pop_func ; GB_werk_push_f GB_werk_push = my_callback->GB_werk_push_func ; #endif GB_C_TYPE cwork = (*((GB_C_TYPE *) scalar)) ; #include "GB_subassign_05d_template.c" return (GrB_SUCCESS) ; }