ggml_cont_3d method
      
Pointer<ggml_tensor> 
ggml_cont_3d(
    
    
- Pointer<ggml_context> ctx,
- Pointer<ggml_tensor> a,
- int ne0,
- int ne1,
- int ne2,
Implementation
ffi.Pointer<ggml_tensor> ggml_cont_3d(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  int ne0,
  int ne1,
  int ne2,
) {
  return _ggml_cont_3d(
    ctx,
    a,
    ne0,
    ne1,
    ne2,
  );
}