MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / ggml_cont_1d

Function ggml_cont_1d

subprojects/llama.cpp/ggml/src/ggml.c:3471–3476  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3469
3470// make contiguous, with new shape
3471GGML_API struct ggml_tensor * ggml_cont_1d(
3472 struct ggml_context * ctx,
3473 struct ggml_tensor * a,
3474 int64_t ne0) {
3475 return ggml_cont_4d(ctx, a, ne0, 1, 1, 1);
3476}
3477
3478GGML_API struct ggml_tensor * ggml_cont_2d(
3479 struct ggml_context * ctx,

Callers

nothing calls this directly

Calls 1

ggml_cont_4dFunction · 0.85

Tested by

no test coverage detected