Qwen3-Coder-Next fixes and updated recipe

This commit is contained in:
Eugene Rakhmatulin
2026-02-12 15:56:32 -08:00
parent da4185cb12
commit 701147b1eb
7 changed files with 129 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
try:
import triton.runtime._allocation as _alloc
import torch
_alloc.NullAllocator.__call__ = staticmethod(
lambda size, alignment, stream:
torch.cuda.caching_allocator_alloc(size, stream=stream))
except Exception:
pass