{"about":{"site":"https://codewithpapers.app","non_affiliation":"Code with Papers and Syntology are not affiliated with, endorsed by, or sponsored by Papers with Code, Meta, or the pwc-archive mirror.","licence":"CC BY-SA 4.0","licence_url":"https://creativecommons.org/licenses/by-sa/4.0/legalcode","attribution":"https://codewithpapers.app/attribution","modified":"archive material modified by Syntology; see the attribution page"},"url":"/paper/arxiv-2601-02609","title":"Chronicals: A High-Performance Framework for LLM Fine-Tuning with 3.51x Speedup over Unsloth","arxiv_id":"2601.02609","date":"2026-01-06","proceeding":null,"authors":["Arjun S. Nair"],"abstract":"Large language model fine-tuning is bottlenecked by memory: a 7B parameter model requires 84GB--14GB for weights, 14GB for gradients, and 56GB for FP32 optimizer states--exceeding even A100-40GB capacity. We present Chronicals, an open-source training framework achieving 3.51x speedup over Unsloth through four synergistic optimizations: (1) fused Triton kernels eliminating 75% of memory traffic via RMSNorm (7x), SwiGLU (5x), and QK-RoPE (2.3x) fusion; (2) Cut Cross-Entropy reducing logit memory from 5GB to 135MB through online softmax computation; (3) LoRA+ with theoretically-derived 16x differential learning rates between adapter matrices; and (4) Best-Fit Decreasing sequence packing recovering 60-75% of compute wasted on padding. On Qwen2.5-0.5B with A100-40GB, Chronicals achieves 41,184 tokens/second for full fine-tuning versus Unsloth's 11,736 tokens/second (3.51x). For LoRA at rank 32, we reach 11,699 tokens/second versus Unsloth MAX's 2,857 tokens/second (4.10x). Critically, we discovered that Unsloth's reported 46,000 tokens/second benchmark exhibited zero gradient norms--the model was not training. We provide complete mathematical foundations: online softmax correctness proofs, FlashAttention IO complexity bounds O(N^2 d^2 M^{-1}), LoRA+ learning rate derivations from gradient magnitude analysis, and bin-packing approximation guarantees. All implementations, benchmarks, and proofs are available at https://github.com/Ajwebdevs/Chronicals with pip installation via https://pypi.org/project/chronicals/.","url_abs":"https://arxiv.org/abs/2601.02609","url_pdf":"https://arxiv.org/pdf/2601.02609","source":{"archive":null,"snapshot":"2025-07-28","note":"not in the Papers with Code archive (frozen at the snapshot)","row_kind":"graph","title_abstract_authors_date":"arXiv metadata, CC0 1.0 (https://info.arxiv.org/help/license)"},"code_links":[],"tasks":[],"methods":[],"datasets_introduced":[],"methods_introduced":[],"results":[],"syntology":{"atlas_url":"https://app.syntology.ai/?focus=2601.02609","mcp":{"get_harvested_code_for_paper":{"arxiv_id":"2601.02609"}},"developers":"https://syntology.ai/developers","read_at":"2026-09-24T18:15:14+00:00","read_at_is":"when the build read Syntology's graph, not when any sample ran","claim":"Per-sample execution status on synthesized fixtures; not a correctness claim about the paper. Samples come from repositories linked to the paper, official or community; repo_kind says which.","repos":[{"mentioned_in_github":null,"is_official":null,"provenance":"deterministic:regex_extraction","mentioned_in_paper":null,"url":"https://github.com/Ajwebdevs/Chronicals","reach":{"status":"ok","spdx":"NOASSERTION"}}],"summary":{"unverified":33},"by_repo_kind":{"found_in_text":{"samples":33,"ran":0,"repositories":1}},"repo_kind_vocabulary":{"official":"The archive marks this repository official for the paper","named_in_paper":"The archive records that the paper mentions this repository; it is not marked official","listed":"In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper","found_in_text":"Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted","community":"Not in the archive's code links for this paper; a community repository Syntology harvested"},"n_pointer_only_for_licence":33,"samples":[{"code_sha256_prefix":"3c9010c06cd4eafc","entry":"apply_dora_to_model","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/lora/dora_adapter.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/lora/dora_adapter.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"3c9010c06cd4eafc"}},{"code_sha256_prefix":"37f4da134de23ea0","entry":"apply_lora_checkpointing","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/lora/gradient_checkpointing_lora.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/lora/gradient_checkpointing_lora.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"37f4da134de23ea0"}},{"code_sha256_prefix":"def82cf7461704a9","entry":"apply_lora_to_model","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/lora/lora_optimized.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/lora/lora_optimized.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"def82cf7461704a9"}},{"code_sha256_prefix":"549a700a723e8ef2","entry":"chunked_cross_entropy_loss","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/cut_cross_entropy.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/cut_cross_entropy.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"549a700a723e8ef2"}},{"code_sha256_prefix":"abab4a1b18037b93","entry":"compute_arithmetic_intensity","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/flash_attention_optimizer.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/flash_attention_optimizer.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"abab4a1b18037b93"}},{"code_sha256_prefix":"125e8438c36c3122","entry":"convert_lora_to_dora","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/lora/dora_adapter.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/lora/dora_adapter.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"125e8438c36c3122"}},{"code_sha256_prefix":"022a2eebc3a6077f","entry":"cut_cross_entropy","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/cut_cross_entropy.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/cut_cross_entropy.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"022a2eebc3a6077f"}},{"code_sha256_prefix":"39bad39ba513a138","entry":"estimate_checkpointing_savings","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/lora/gradient_checkpointing_lora.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/lora/gradient_checkpointing_lora.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"39bad39ba513a138"}},{"code_sha256_prefix":"7b8b337acd50fdf4","entry":"estimate_tokens_per_second","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/flash_attention_optimizer.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/flash_attention_optimizer.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"7b8b337acd50fdf4"}},{"code_sha256_prefix":"754961defcfd7acd","entry":"fused_cross_entropy_triton","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/triton_kernels.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/triton_kernels.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"754961defcfd7acd"}},{"code_sha256_prefix":"8e03397a90e03548","entry":"fused_lora_down_dropout","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/fused_lora_kernels.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/fused_lora_kernels.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"8e03397a90e03548"}},{"code_sha256_prefix":"c90946ad3d56b68b","entry":"fused_lora_linear","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/fused_lora_kernels.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/fused_lora_kernels.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"c90946ad3d56b68b"}},{"code_sha256_prefix":"86fb35acea6bf0e1","entry":"fused_lora_linear_with_grad","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/fused_lora_kernels.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/fused_lora_kernels.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"86fb35acea6bf0e1"}},{"code_sha256_prefix":"0776674b13b98da3","entry":"fused_q_rope_inplace","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/fused_rope.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/fused_rope.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"0776674b13b98da3"}},{"code_sha256_prefix":"a4924b02da2cb36b","entry":"fused_qk_rope","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/fused_qk_rope.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/fused_qk_rope.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"a4924b02da2cb36b"}},{"code_sha256_prefix":"38fc5ac3f8050ea8","entry":"fused_qk_rope_backward","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/fused_qk_rope.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/fused_qk_rope.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"38fc5ac3f8050ea8"}},{"code_sha256_prefix":"7fa6f1e0f24b4896","entry":"fused_qk_rope_forward","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/fused_qk_rope.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/fused_qk_rope.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"7fa6f1e0f24b4896"}},{"code_sha256_prefix":"b6d424583f8275e7","entry":"fused_qk_rope_inplace","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/fused_rope.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/fused_rope.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"b6d424583f8275e7"}},{"code_sha256_prefix":"9e1e207e9d289234","entry":"fused_qk_rope_inplace_backward","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/fused_rope.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/fused_rope.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"9e1e207e9d289234"}},{"code_sha256_prefix":"55495c41526b01fb","entry":"get_dora_plus_param_groups","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/lora/dora_adapter.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/lora/dora_adapter.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"55495c41526b01fb"}},{"code_sha256_prefix":"e0fee5939a703ab5","entry":"get_gpu_specs","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/flash_attention_optimizer.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/flash_attention_optimizer.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"e0fee5939a703ab5"}},{"code_sha256_prefix":"3b1cee1666f8fdb7","entry":"get_lora_optimizer_groups","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/lora/lora_optimized.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/lora/lora_optimized.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"3b1cee1666f8fdb7"}},{"code_sha256_prefix":"b2d1236317b593ab","entry":"get_model_config","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/config/config.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/config/config.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"b2d1236317b593ab"}},{"code_sha256_prefix":"c8e820f2fc086863","entry":"get_model_size","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/lora/lora_presets.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/lora/lora_presets.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"c8e820f2fc086863"}},{"code_sha256_prefix":"c91de53c313dfbb4","entry":"get_optimal_chunk_size","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/cut_cross_entropy.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/cut_cross_entropy.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"c91de53c313dfbb4"}},{"code_sha256_prefix":"18e9aa9520439eb6","entry":"get_optimal_config_for_gpu","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/config/config.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/config/config.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"18e9aa9520439eb6"}},{"code_sha256_prefix":"2c25455de3cd069c","entry":"get_optimal_preset","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/lora/lora_presets.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/lora/lora_presets.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"2c25455de3cd069c"}},{"code_sha256_prefix":"ff5237ff47007036","entry":"get_preset_for_hardware","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/lora/lora_presets.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/lora/lora_presets.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"ff5237ff47007036"}},{"code_sha256_prefix":"147e044504ca0fd5","entry":"get_sota_config_for_gpu","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/config/sota_config.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/config/sota_config.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"147e044504ca0fd5"}},{"code_sha256_prefix":"b771b43e585c9731","entry":"print_comprehensive_diagnostic","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/config/sota_config.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/config/sota_config.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"b771b43e585c9731"}},{"code_sha256_prefix":"669f295dc42160cf","entry":"print_diagnostic_report","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/config/sota_config.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/config/sota_config.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"669f295dc42160cf"}},{"code_sha256_prefix":"1be8da1291321955","entry":"rmsnorm_backward","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/triton_kernels.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/triton_kernels.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"1be8da1291321955"}},{"code_sha256_prefix":"f985053a65ebe136","entry":"rmsnorm_forward","repo":"Ajwebdevs/Chronicals","repo_kind":"found_in_text","path":"chronicals/kernels/triton_kernels.py","file_url":"https://github.com/Ajwebdevs/Chronicals/blob/HEAD/chronicals/kernels/triton_kernels.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"NOASSERTION","inline_ok":false,"mcp_get_code":{"code_sha256":"f985053a65ebe136"}}]},"arxiv_metadata":{"licence":"arXiv metadata, CC0 1.0 (https://info.arxiv.org/help/license)","fields":["title","abstract","authors","date"],"primary_category":"cs.LG","source":"arxiv_2026.jsonl"},"syntology_extracted_results":null}