cleanup: Remove profiling prints before merge #44
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The decode timing instrumentation in engine.zig and model.zig should be removed or made conditional before merging to master:
engine.zig: "Decode: X tokens in Ys = Z tok/s" — keep this one (useful for CLI)model.zig: "decode_profile: gpu=Xms readback+argmax=Yms" — remove or gate behind debug flagstd.c.mach_absolute_time()andstd.c.mach_timebase_infowhich are macOS-specificMerged via squash. Profiling prints gated behind
@import("builtin").mode == .Debug.decode_profileandargmax_compareprints only appear in debug builds