powered by
Reshapes tensor to 3D with shape (ne0, ne1, ne2)
ggml_reshape_3d(ctx, a, ne0, ne1, ne2)
Reshaped tensor
GGML context
Input tensor
Size of dimension 0
Size of dimension 1
Size of dimension 2
# \donttest{ ctx <- ggml_init(16 * 1024 * 1024) a <- ggml_new_tensor_1d(ctx, GGML_TYPE_F32, 24) ggml_set_f32(a, 1:24) result <- ggml_reshape_3d(ctx, a, 2, 3, 4) ggml_free(ctx) # }
Run the code above in your browser using DataLab