mlx_imported_function_apply_kwargs function

  1. @Native<Int Function(Pointer<mlx_vector_array>, mlx_imported_function, mlx_vector_array, mlx_map_string_to_array)>(ffi.Pointer<mlx_vector_array>, mlx_imported_function, mlx_vector_array, mlx_map_string_to_array)>()
int mlx_imported_function_apply_kwargs(
  1. Pointer<mlx_vector_array> res,
  2. mlx_imported_function xfunc,
  3. mlx_vector_array args,
  4. mlx_map_string_to_array kwargs,
)

Implementation

@ffi.Native<
  ffi.Int Function(
    ffi.Pointer<mlx_vector_array>,
    mlx_imported_function,
    mlx_vector_array,
    mlx_map_string_to_array,
  )
>()
external int mlx_imported_function_apply_kwargs(
  ffi.Pointer<mlx_vector_array> res,
  mlx_imported_function xfunc,
  mlx_vector_array args,
  mlx_map_string_to_array kwargs,
);