ggml_print_objects: Print Objects in Context

View source: R/memory.R

ggml_print_objectsR Documentation

Print Objects in Context

Description

Debug function to print all objects (tensors) in the context

Usage

ggml_print_objects(ctx)

Arguments

ctx

GGML context

Value

NULL (invisible)

Examples


ctx <- ggml_init(1024 * 1024)
t <- ggml_new_tensor_1d(ctx, GGML_TYPE_F32, 10)
ggml_print_objects(ctx)
ggml_free(ctx)


ggmlR documentation built on July 14, 2026, 1:08 a.m.