Text Generation
Transformers
Safetensors
English
Arabic
quasar_long
silx-ai
quasar-preview
quasar
foundation-model
Mixture of Experts
18b
2b-active
long-context
bittensor
sn24
decentralized-training
distillation
hybrid-transformer
loop-transformer
safe-nope
drope
conversational
custom_code
Instructions to use mainline777/base_IIXIV with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mainline777/base_IIXIV with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mainline777/base_IIXIV", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("mainline777/base_IIXIV", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use mainline777/base_IIXIV with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mainline777/base_IIXIV" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mainline777/base_IIXIV", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/mainline777/base_IIXIV
- SGLang
How to use mainline777/base_IIXIV with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "mainline777/base_IIXIV" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mainline777/base_IIXIV", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "mainline777/base_IIXIV" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mainline777/base_IIXIV", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use mainline777/base_IIXIV with Docker Model Runner:
docker model run hf.co/mainline777/base_IIXIV
File size: 16,800 Bytes
41865df | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 | # Copyright (c) 2023-2025, Songlin Yang, Yu Zhang
import torch
import triton
import triton.language as tl
from fla.ops.utils import prepare_chunk_indices
from fla.utils import IS_AMD, autotune_cache_kwargs, get_multiprocessor_count, input_guard, tensor_cache
NUM_WARPS_AUTOTUNE = [2, 4, 8, 16] if IS_AMD else [2, 4, 8, 16, 32]
def token_shift_ref(
x: torch.Tensor,
cu_seqlens: torch.Tensor | None = None,
) -> torch.Tensor:
if cu_seqlens is not None:
# Variable length mode with cu_seqlens
assert x.dim() == 3, "Input must be [B, T, D]"
B, T, D = x.shape
assert B == 1, "Batch size must be 1 when using cu_seqlens"
result = torch.zeros_like(x)
N = cu_seqlens.shape[0] - 1
for i in range(N):
start = cu_seqlens[i].item()
end = cu_seqlens[i+1].item()
seq_len = end - start
if seq_len <= 1:
# For sequences of length 1 or 0, delta is simply -x
result[0, start:end] = -x[0, start:end]
else:
# For longer sequences, handle padding manually
shifted = torch.zeros_like(x[0, start:end])
shifted[1:] = x[0, start:end-1]
delta = shifted - x[0, start:end]
result[0, start:end] = delta
return result
else:
time_shift = torch.nn.ZeroPad2d((0, 0, 1, -1))
shifted = time_shift(x)
delta = shifted - x
return delta
@triton.heuristics({
'IS_VARLEN': lambda args: args['cu_seqlens'] is not None,
'USE_INITIAL_STATE': lambda args: args['cache'] is not None,
})
@triton.autotune(
configs=[
triton.Config({}, num_warps=num_warps, num_stages=num_stages)
for num_warps in NUM_WARPS_AUTOTUNE
for num_stages in [1, 2, 3]
],
key=['BD'],
**autotune_cache_kwargs,
)
@triton.jit
def token_shift_fwd_kernel_short(
x,
y,
cu_seqlens,
cache,
cache_out,
T,
D: tl.constexpr,
BD: tl.constexpr,
IS_VARLEN: tl.constexpr,
USE_INITIAL_STATE: tl.constexpr,
STORE_FINAL_STATE: tl.constexpr,
IS_DECODE: tl.constexpr,
):
i_b, i_t = tl.program_id(0), tl.program_id(1)
if IS_VARLEN:
i_n = i_b
bos, eos = tl.load(cu_seqlens + i_n).to(tl.int32), tl.load(cu_seqlens + i_n + 1).to(tl.int32)
g_t = i_t + bos
if g_t >= eos:
return
is_first_pos = (i_t == 0)
is_last_pos = (g_t == eos - 1)
else:
g_t = i_t
is_first_pos = (g_t == 0)
is_last_pos = (g_t == T - 1)
o_d = tl.arange(0, BD)
m_d = o_d < D
if IS_VARLEN:
base_offset = g_t * D + o_d
else:
base_offset = i_b * T*D + g_t * D + o_d
b_x = tl.load(x + base_offset, mask=m_d)
if IS_VARLEN:
cache_offset = i_n * D + o_d # i_n is seq index
else:
cache_offset = i_b * D + o_d # i_b is batch index
if IS_DECODE and USE_INITIAL_STATE:
b_cache = tl.load(cache + cache_offset, mask=m_d)
delta = b_cache - b_x
tl.store(y + base_offset, delta, mask=m_d)
if STORE_FINAL_STATE:
tl.store(cache_out + cache_offset, b_x, mask=m_d)
return
if is_first_pos:
# First position in sequence: delta = -hidden_states
if USE_INITIAL_STATE:
# cache shape: [N, D]
b_cache = tl.load(cache + cache_offset, mask=m_d)
delta = b_cache - b_x
tl.store(y + base_offset, delta, mask=m_d)
else:
tl.store(y + base_offset, -b_x, mask=m_d)
return
# Other positions: delta = prev - curr
if IS_VARLEN:
prev_offset = (g_t-1) * D + o_d
else:
prev_offset = i_b * T*D + (g_t-1) * D + o_d
prev_values = tl.load(x + prev_offset, mask=m_d)
delta = prev_values - b_x
tl.store(y + base_offset, delta, mask=m_d)
if STORE_FINAL_STATE:
if is_last_pos:
tl.store(cache_out + cache_offset, b_x, mask=m_d)
@triton.heuristics({
'IS_VARLEN': lambda args: args['cu_seqlens'] is not None,
'USE_INITIAL_STATE': lambda args: args['cache'] is not None,
})
@triton.autotune(
configs=[
triton.Config({}, num_warps=num_warps, num_stages=num_stages)
for num_warps in NUM_WARPS_AUTOTUNE
for num_stages in [1, 2, 3]
],
key=['BD', 'NB'],
**autotune_cache_kwargs,
)
@triton.jit
def token_shift_fwd_kernel_long(
x,
y,
cu_seqlens,
chunk_indices,
cache,
cache_out,
T,
D: tl.constexpr,
BD: tl.constexpr,
BT: tl.constexpr,
NB: tl.constexpr,
IS_VARLEN: tl.constexpr,
USE_INITIAL_STATE: tl.constexpr,
STORE_FINAL_STATE: tl.constexpr,
):
i_d, i_t, i_b = tl.program_id(0), tl.program_id(1), tl.program_id(2)
if IS_VARLEN:
i_n, i_t = tl.load(chunk_indices + i_t * 2).to(tl.int32), \
tl.load(chunk_indices + i_t * 2 + 1).to(tl.int32)
bos, eos = tl.load(cu_seqlens + i_n), tl.load(cu_seqlens + i_n + 1)
t_start = i_t * BT
t_end = tl.minimum(t_start + BT, eos - bos)
else:
i_n = i_b
bos, eos = i_b * T, (i_b + 1) * T
t_start = i_t * BT
t_end = tl.minimum(t_start + BT, T)
o_d = i_d * BD + tl.arange(0, BD)
m_d = o_d < D
for t in range(t_start, t_end):
global_t = bos + t
offset = global_t * D + o_d
b_x = tl.load(x + offset, mask=m_d)
is_first = (global_t == bos)
if is_first:
if USE_INITIAL_STATE:
# cache shape: [N, D]
cache_off = i_n * D + o_d if IS_VARLEN else i_b * D + o_d
b_cache = tl.load(cache + cache_off, mask=m_d)
delta = b_cache - b_x
else:
delta = -b_x
else:
prev_off = offset - D
b_prev = tl.load(x + prev_off, mask=m_d)
delta = b_prev - b_x
tl.store(y + offset, delta, mask=m_d)
if STORE_FINAL_STATE:
if global_t == eos - 1:
cache_out_off = i_n * D + o_d if IS_VARLEN else i_b * D + o_d
tl.store(cache_out + cache_out_off, b_x, mask=m_d)
@triton.heuristics({
'IS_VARLEN': lambda args: args['cu_seqlens'] is not None,
'USE_INITIAL_STATE': lambda args: args['grad_cache_out'] is not None,
'HAS_DCACHE': lambda args: args['grad_cache_in'] is not None,
})
@triton.autotune(
configs=[
triton.Config({}, num_warps=num_warps, num_stages=num_stages)
for num_warps in NUM_WARPS_AUTOTUNE
for num_stages in [1, 2, 3]
],
key=['BD'],
**autotune_cache_kwargs,
)
@triton.jit
def token_shift_bwd_kernel_short(
dx,
dy,
cu_seqlens,
grad_cache_in,
grad_cache_out,
T,
D: tl.constexpr,
BD: tl.constexpr,
IS_VARLEN: tl.constexpr,
USE_INITIAL_STATE: tl.constexpr,
HAS_DCACHE: tl.constexpr,
):
i_b, i_t = tl.program_id(0), tl.program_id(1)
if IS_VARLEN:
i_n = i_b
bos, eos = tl.load(cu_seqlens + i_n).to(tl.int32), tl.load(cu_seqlens + i_n + 1).to(tl.int32)
g_t = i_t + bos
if g_t >= eos:
return
is_first_pos = (g_t == bos)
is_last_pos = (g_t == eos - 1)
else:
g_t = i_t
is_first_pos = (g_t == 0)
is_last_pos = (g_t == T - 1)
o_d = tl.arange(0, BD)
m_d = o_d < D
if IS_VARLEN:
base_offset = g_t * D + o_d
# This should not be used for varlen
cache_off = i_n * D + o_d
else:
base_offset = i_b * T * D + g_t * D + o_d
cache_off = i_b * D + o_d
b_dy = tl.load(dy + base_offset, mask=m_d)
if is_last_pos:
# grad = -grad_delta[t] + grad_cache_in(from next rank)
if HAS_DCACHE:
b_dy_cache = tl.load(grad_cache_in + cache_off, mask=m_d)
b_dx = -b_dy + b_dy_cache
else:
b_dx = -b_dy
else:
# grad = -grad_delta[t] + grad_delta[t+1]
if IS_VARLEN:
next_offset = (g_t + 1) * D + o_d
else:
next_offset = i_b * T * D + (g_t + 1) * D + o_d
b_dx = -b_dy + tl.load(dy + next_offset, mask=m_d)
tl.store(dx + base_offset, b_dx, mask=m_d)
if USE_INITIAL_STATE:
if is_first_pos:
tl.store(grad_cache_out + cache_off, b_dy, mask=m_d)
@triton.heuristics({
'IS_VARLEN': lambda args: args['cu_seqlens'] is not None,
'USE_INITIAL_STATE': lambda args: args['grad_cache_out'] is not None,
'HAS_DCACHE': lambda args: args['grad_cache_in'] is not None,
})
@triton.autotune(
configs=[
triton.Config({}, num_warps=num_warps, num_stages=num_stages)
for num_warps in NUM_WARPS_AUTOTUNE
for num_stages in [1, 2, 3]
],
key=['BD', 'NB'],
**autotune_cache_kwargs,
)
@triton.jit
def token_shift_bwd_kernel_long(
dx,
dy,
cu_seqlens,
chunk_indices,
grad_cache_in,
grad_cache_out,
T,
D: tl.constexpr,
BD: tl.constexpr,
BT: tl.constexpr,
NB: tl.constexpr,
IS_VARLEN: tl.constexpr,
USE_INITIAL_STATE: tl.constexpr,
HAS_DCACHE: tl.constexpr,
):
i_d, i_t_blk, i_b = tl.program_id(0), tl.program_id(1), tl.program_id(2)
if IS_VARLEN:
i_n, i_t_blk = tl.load(chunk_indices + i_t_blk * 2).to(tl.int32), \
tl.load(chunk_indices + i_t_blk * 2 + 1).to(tl.int32)
bos, eos = tl.load(cu_seqlens + i_n), tl.load(cu_seqlens + i_n + 1)
t_start = i_t_blk * BT
t_end = tl.minimum(t_start + BT, eos - bos)
else:
bos, eos = i_b * T, (i_b + 1) * T
t_start = i_t_blk * BT
t_end = tl.minimum(t_start + BT, T)
o_d = i_d * BD + tl.arange(0, BD)
m_d = o_d < D
cache_off = i_n * D + o_d if IS_VARLEN else i_b * D + o_d
for t in range(t_start, t_end):
global_t = bos + t
offset = global_t * D + o_d
b_dy = tl.load(dy + offset, mask=m_d)
if global_t == eos - 1:
if HAS_DCACHE:
b_dy_cache = tl.load(grad_cache_in + cache_off, mask=m_d)
b_dx = -b_dy + b_dy_cache
else:
b_dx = -b_dy
else:
next_off = offset + D
b_dx = -b_dy + tl.load(dy + next_off, mask=m_d)
tl.store(dx + offset, b_dx, mask=m_d)
if USE_INITIAL_STATE:
if global_t == bos:
tl.store(grad_cache_out + cache_off, b_dy, mask=m_d)
@tensor_cache
def prepare_maxlens(cu_seqlens: torch.LongTensor) -> int:
return torch.max(cu_seqlens.diff()).item()
def token_shift_fwd(
x: torch.Tensor,
cu_seqlens: torch.Tensor | None = None,
cache: torch.Tensor | None = None,
output_cache: bool = False,
chunk_indices: torch.LongTensor | None = None,
) -> torch.Tensor:
B, T, D = x.shape
y = torch.empty_like(x)
use_short_kernel = T <= 4096
if cu_seqlens is not None:
T = prepare_maxlens(cu_seqlens)
N = len(cu_seqlens) - 1
else:
N = B
if output_cache:
cache_out = torch.empty((N, D), device=x.device, dtype=x.dtype)
else:
cache_out = None
if use_short_kernel:
if cu_seqlens is not None:
N = len(cu_seqlens) - 1
else:
N = B
BD = triton.next_power_of_2(D)
grid = (N, T)
IS_DECODE = T == 1 or (B == 1 and T == N)
token_shift_fwd_kernel_short[grid](
x=x,
y=y,
cu_seqlens=cu_seqlens,
cache=cache,
cache_out=cache_out,
T=T,
D=D,
BD=BD,
STORE_FINAL_STATE=output_cache,
IS_DECODE=IS_DECODE,
)
else:
BT = min(64, triton.next_power_of_2(triton.cdiv(max(16, B*T), get_multiprocessor_count(x.device.index))))
if chunk_indices is None and cu_seqlens is not None:
chunk_indices = prepare_chunk_indices(cu_seqlens, BT)
NT = len(chunk_indices) if cu_seqlens is not None else triton.cdiv(T, BT)
BD = triton.next_power_of_2(D)
NB = triton.cdiv(B*T, 1024)
def grid(meta): return (triton.cdiv(D, meta['BD']), NT, N)
token_shift_fwd_kernel_long[grid](
x,
y,
cu_seqlens,
chunk_indices,
cache,
cache_out,
T,
D=D,
BD=BD,
BT=BT,
NB=NB,
STORE_FINAL_STATE=output_cache,
)
return y, N, T, use_short_kernel, cache_out
def token_shift_bwd(
dy: torch.Tensor,
N: int,
T: int,
dcache: torch.Tensor | None = None,
cu_seqlens: torch.Tensor | None = None,
use_short_kernel: bool = True,
has_init_cache: bool = False,
chunk_indices: torch.LongTensor | None = None,
) -> torch.Tensor:
D = dy.shape[2]
BD = triton.next_power_of_2(D)
dx = torch.empty_like(dy)
if has_init_cache:
grad_cache_out = torch.empty((N, D), device=dy.device, dtype=dy.dtype)
else:
grad_cache_out = None
if use_short_kernel:
grid = (N, T)
token_shift_bwd_kernel_short[grid](
dy=dy,
dx=dx,
cu_seqlens=cu_seqlens,
grad_cache_in=dcache,
grad_cache_out=grad_cache_out,
T=T,
D=D,
BD=BD,
)
else:
BT = min(64, triton.next_power_of_2(triton.cdiv(max(16, dy.numel() // D),
get_multiprocessor_count(dy.device.index))))
if chunk_indices is None and cu_seqlens is not None:
chunk_indices = prepare_chunk_indices(cu_seqlens, BT)
NT = len(chunk_indices) if cu_seqlens is not None else triton.cdiv(T, BT)
NB = triton.cdiv(N * dy.shape[1], 1024)
BD = triton.next_power_of_2(D)
def grid(meta): return (triton.cdiv(D, meta['BD']), NT, N)
token_shift_bwd_kernel_long[grid](
dx,
dy,
cu_seqlens,
chunk_indices,
dcache,
grad_cache_out,
T,
D=D,
BD=BD,
BT=BT,
NB=NB,
)
return dx, grad_cache_out
class TokenShift(torch.autograd.Function):
@staticmethod
@input_guard
def forward(ctx, x: torch.Tensor, cu_seqlens: torch.Tensor | None = None,
cache: torch.Tensor | None = None, output_cache: bool = False,
chunk_indices: torch.LongTensor | None = None):
output, N, T, use_short_kernel, cache_out = token_shift_fwd(x, cu_seqlens, cache, output_cache, chunk_indices)
ctx.cu_seqlens = cu_seqlens
ctx.chunk_indices = chunk_indices
ctx.N = N
ctx.T = T
ctx.use_short_kernel = use_short_kernel
ctx.has_cache = cache is not None
return output, cache_out
@staticmethod
@input_guard
def backward(ctx, dy: torch.Tensor, dcache: torch.Tensor | None = None):
dx, grad_cache = token_shift_bwd(dy, ctx.N, ctx.T, dcache, ctx.cu_seqlens,
ctx.use_short_kernel, ctx.has_cache, ctx.chunk_indices)
return dx, None, grad_cache, None, None
def token_shift(
x: torch.Tensor,
cu_seqlens: torch.LongTensor | None = None,
cache: torch.Tensor | None = None,
output_cache: bool = False,
chunk_indices: torch.LongTensor | None = None,
):
"""
Token-shift operation implemented with Triton kernels.
Args:
x: Input tensor of shape [B, T, D] (or [1, T, D] when `cu_seqlens` is supplied).
cu_seqlens: Optional cumulative sequence lengths of shape [B + 1].
When supplied, `x.shape[0]` must be 1 and `x.dim()` must be 3.
cache: Optional cache tensor of shape [N, D] that holds the last token
from the previous call.
output_cache: Whether to return the updated cache alongside the output.
In previous versions this parameter did not exist and the
cache was always dropped; to preserve backward compatibility
the default is False.
Returns:
output: Tensor of shape [B, T, D] after applying the token-shift.
cache_out: Tensor of shape [B, 1, D] containing the last token that
should be fed as `cache` in the next call. Only returned
when `output_cache=True`.
"""
if cu_seqlens is not None:
assert x.dim() == 3, "Input must be [B, T, D]"
assert x.shape[0] == 1, "Batch size must be 1 when using cu_seqlens"
output, cache_out = TokenShift.apply(x, cu_seqlens, cache, output_cache, chunk_indices)
if output_cache:
return output, cache_out
else:
return output
|