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