Package-level declarations
Types
Tensor entry to be consumed by a future GGUF writer implementation.
Options for writing GGUF bytes.
Minimal GGUF writer that consumes a GgufWriteRequest and emits GGUF v3 bytes. Scope: supports scalar KV types (string/int/long/float/bool) and flat arrays of those scalars; tensor payloads support FP32, FP16, BF16, F64, Int8/Int16/Int32/Int64 plus raw-byte passthrough for other quantization tags.
Result summary for a GGUF write.
Aggregate export payload prepared by the facade; writer will consume this.
Functions
Prepare a GGUF write request from a compute graph and weight tensors. This does not write bytes; a future GGUFWriter will consume the request.
Convenience: record a forward pass under a graph/tape context, collect weights, and prepare a GGUF request. The forwardPass lambda receives a GraphExecutionContext whose ops are tracing-enabled (VoidTensorOps base).
Build a GGUF export request starting from an ExecutionTape (if present). Falls back to an empty graph when no tape is supplied.
Convenience: prepare and write GGUF bytes directly for a graph + weights.
Write GGUF bytes for a graph + weights directly to a file on JVM.
Convenience: prepare and write GGUF bytes directly for a model + forward pass.
Write GGUF bytes for a model + forward pass directly to a file on JVM.