File size: 29,684 Bytes
55473c1 4291baa 55473c1 8bee752 4291baa 55473c1 3074bf3 55473c1 8bee752 3074bf3 4291baa 55473c1 3074bf3 55473c1 8bee752 4291baa 55473c1 4802f1a 55473c1 f5ea11f 55473c1 4802f1a 55473c1 | 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 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 | """Unit tests for auto_eval (add_new_eval) and auto_quant (add_new_quant).
Test models:
- nytopop/Qwen3-30B-A3B.w4a16 (quantized W4A16 β auto_eval)
- Qwen/Qwen3-30B-A3B (FP bfloat16 β auto_quant)
"""
import json
import logging
import re
import sys
import os
from types import SimpleNamespace
from pathlib import Path
# Ensure project root is on the path
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
logging.basicConfig(level=logging.DEBUG, format="%(name)s %(levelname)s: %(message)s")
logger = logging.getLogger("test_submit")
# ββ Imports from the project βββββββββββββββββββββββββββββββββββββββββββββββββ
from transformers import AutoConfig
from huggingface_hub import HfApi
from src.submission.check_validity import (
get_model_size,
get_quantized_model_parameters_memory,
validate_quantization_scheme,
estimate_weight_memory_gb,
estimate_quantization_memory_gb,
get_num_layers,
select_gpu,
SUPPORTED_QUANT_SCHEMES,
SUPPORTED_INPUT_DTYPES,
PRECISION_TO_BITS,
BYTES,
KNOWN_SIZE_FACTOR,
get_gpu_display_name,
is_model_on_hub,
)
import src.submission.check_validity as check_validity
from src.submission.submit import (
_normalize_file_tag_component,
add_new_eval,
add_new_quant,
)
import src.submission.submit as submit_module
API = HfApi()
def _is_error(result: str) -> bool:
"""Check if result is a styled_error (red) response."""
return "color: red" in result
def _is_success(result: str) -> bool:
"""Check if result is a styled_message (green) response."""
return "color: green" in result
def _is_warning(result: str) -> bool:
"""Check if result is a styled_warning (orange) response."""
return "color: orange" in result
def _consume_generator(gen):
"""Consume a generator (or plain value), return the last yielded value."""
if hasattr(gen, '__next__'):
result = None
for value in gen:
result = value
return result
return gen
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Helper: inspect model config
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def inspect_model(model_name: str, revision: str = "main"):
"""Fetch and print model config details for debugging."""
print(f"\n{'='*70}")
print(f" Inspecting: {model_name}")
print(f"{'='*70}")
# 1. AutoConfig
try:
config = AutoConfig.from_pretrained(model_name, revision=revision, trust_remote_code=True)
print(f"\n[Config] architectures: {getattr(config, 'architectures', None)}")
print(f"[Config] torch_dtype: {getattr(config, 'torch_dtype', None)}")
print(f"[Config] num_hidden_layers: {getattr(config, 'num_hidden_layers', None)}")
print(f"[Config] num_attention_heads: {getattr(config, 'num_attention_heads', None)}")
print(f"[Config] hidden_size: {getattr(config, 'hidden_size', None)}")
# MoE-specific
for moe_attr in ("num_experts", "num_local_experts", "num_experts_per_tok"):
val = getattr(config, moe_attr, None)
if val is not None:
print(f"[Config] {moe_attr}: {val}")
# quantization_config
qc = getattr(config, "quantization_config", None)
if qc is not None:
if hasattr(qc, "to_dict"):
qc_dict = qc.to_dict()
elif isinstance(qc, dict):
qc_dict = qc
else:
qc_dict = {"raw": str(qc)}
print(f"[Config] quantization_config: {json.dumps(qc_dict, indent=2)}")
else:
print(f"[Config] quantization_config: None")
except Exception as e:
print(f"[Config] ERROR: {e}")
config = None
# 2. Model info from HF API
try:
info = API.model_info(repo_id=model_name, revision=revision)
print(f"\n[ModelInfo] id: {info.id}")
print(f"[ModelInfo] likes: {info.likes}")
print(f"[ModelInfo] siblings count: {len(info.siblings) if info.siblings else 0}")
# List sibling files (first 20)
if info.siblings:
fnames = [s.rfilename for s in info.siblings]
print(f"[ModelInfo] files (first 20):")
for f in fnames[:20]:
print(f" {f}")
if len(fnames) > 20:
print(f" ... and {len(fnames) - 20} more")
except Exception as e:
print(f"[ModelInfo] ERROR: {e}")
info = None
return config, info
def test_file_tag_component_prefers_parenthesized_value():
assert _normalize_file_tag_component("INT4 (W4A16)") == "W4A16"
assert _normalize_file_tag_component("INT8 ( W8A16 )") == "W8A16"
assert _normalize_file_tag_component("MXFP4") == "MXFP4"
def test_gpu_display_name_uses_full_label():
assert get_gpu_display_name("4090") == "NVIDIA GeForce RTX 4090"
assert get_gpu_display_name("A100") == "NVIDIA A100-SXM4-80GB"
assert get_gpu_display_name("H200") == "H200"
def test_get_num_layers_supports_nested_raw_config_dict():
config = {
"model_type": "qwen3_5",
"text_config": {
"num_hidden_layers": 36,
"torch_dtype": "bfloat16",
},
}
assert get_num_layers(config) == 36
def test_get_model_size_uses_config_param_count_fallback(monkeypatch):
def _raise(*_args, **_kwargs):
raise RuntimeError("metadata unavailable")
monkeypatch.setattr(check_validity, "get_safetensors_metadata", _raise)
model_info = SimpleNamespace(id="org/custom-model")
params_b, size_gb = get_model_size(
model_info,
precision="16bit",
model_config={"num_parameters": "0.8B"},
)
assert params_b == 0.8
assert size_gb == 1.6
def test_is_model_on_hub_returns_authorization_guidance_for_gated_repo(monkeypatch):
def _raise(*_args, **_kwargs):
raise RuntimeError("You are trying to access a gated repo.")
monkeypatch.setattr(check_validity.AutoConfig, "from_pretrained", _raise)
ok, message, config = is_model_on_hub("org/gated-model", revision="main")
assert ok is False
assert config is None
assert "https://huggingface.co/org/gated-model" in message
assert "request or accept access first" in message
def test_add_new_quant_surfaces_gated_repo_authorization_message(monkeypatch):
monkeypatch.setattr("src.submission.submit._load_quant_cache", lambda: None)
monkeypatch.setattr("src.submission.submit._common_pre_checks", lambda *_args, **_kwargs: None)
monkeypatch.setattr(
"src.submission.submit.is_model_on_hub",
lambda **_kwargs: (
False,
"is gated on the Hugging Face Hub. Please open https://huggingface.co/org/gated-model and request or accept access first. After access is granted, resubmit the model.",
None,
),
)
result = _consume_generator(add_new_quant(
model="org/gated-model",
revision="main",
private=False,
))
assert _is_warning(result)
assert "https://huggingface.co/org/gated-model" in result
assert "request or accept access first" in result
def test_add_new_quant_allows_whitelisted_resubmit_for_failed_entry(monkeypatch, tmp_path):
status_root = tmp_path / "status"
pending_root = tmp_path / "pending"
status_dir = status_root / "quant"
pending_dir = pending_root / "quant"
status_dir.mkdir(parents=True)
pending_dir.mkdir(parents=True)
scheme = SUPPORTED_QUANT_SCHEMES["INT4 (W4A16)"]
model_name = "org/model"
dedup_key = (
f"{model_name}_main_{scheme.name}_{scheme.precision}_{scheme.weight_dtype}_{scheme.name}"
)
failed_entry = {
"model": model_name,
"revision": "main",
"quant_scheme": scheme.name,
"quant_precision": scheme.precision,
"quant_weight_dtype": scheme.weight_dtype,
"status": "Quant Failed",
}
(status_dir / "failed.json").write_text(json.dumps(failed_entry), encoding="utf-8")
pending_entry = dict(failed_entry, status="Pending")
(pending_dir / "stale_request_copy.json").write_text(json.dumps(pending_entry), encoding="utf-8")
monkeypatch.setattr(submit_module, "GIT_STATUS_PATH", str(status_root))
monkeypatch.setattr(submit_module, "GIT_REQUESTS_PATH", str(pending_root))
monkeypatch.setattr(submit_module, "SIZE_WHITELIST", {"alice"})
monkeypatch.setattr(submit_module, "_QUANT_REQUESTED", {dedup_key})
monkeypatch.setattr(submit_module, "_SUBMITTER_DATES", {})
monkeypatch.setattr(submit_module, "_load_quant_cache", lambda: None)
monkeypatch.setattr(submit_module, "_common_pre_checks", lambda *_args, **_kwargs: None)
monkeypatch.setattr(
submit_module,
"is_model_on_hub",
lambda **_kwargs: (
True,
"",
{"architectures": ["TestArch"], "torch_dtype": "float16", "num_hidden_layers": 24},
),
)
monkeypatch.setattr(
submit_module.API,
"model_info",
lambda **_kwargs: SimpleNamespace(cardData={"license": "apache-2.0"}, likes=0),
)
monkeypatch.setattr(
submit_module,
"check_model_card",
lambda *_args, **_kwargs: (True, "", SimpleNamespace(text="x" * 300, data=SimpleNamespace(tags=[]))),
)
monkeypatch.setattr(submit_module, "get_model_tags", lambda *_args, **_kwargs: [])
monkeypatch.setattr(submit_module, "is_license_approved", lambda *_args, **_kwargs: True)
monkeypatch.setattr(submit_module, "get_model_size", lambda *_args, **_kwargs: (7.0, 14.0))
monkeypatch.setattr(submit_module, "get_num_layers", lambda *_args, **_kwargs: 24)
monkeypatch.setattr(submit_module, "estimate_quantization_memory_gb", lambda *_args, **_kwargs: 12.0)
monkeypatch.setattr(submit_module, "estimate_weight_memory_gb", lambda *_args, **_kwargs: 5.0)
monkeypatch.setattr(submit_module, "select_gpu_with_override", lambda *_args, **_kwargs: ("A100", 1))
monkeypatch.setattr(submit_module, "get_gpu_display_name", lambda value: value)
monkeypatch.setattr(submit_module, "compute_single_eta", lambda *_args, **_kwargs: 1)
monkeypatch.setattr(submit_module, "format_eta", lambda *_args, **_kwargs: "1h")
uploaded = {"called": False, "file_tag": None}
def _fake_upload(entry, user_name, model_path, file_tag, model, task_label="eval"):
uploaded["called"] = True
uploaded["file_tag"] = file_tag
monkeypatch.setattr(submit_module, "_upload_to_hub", _fake_upload)
result = _consume_generator(add_new_quant(
model=model_name,
revision="main",
private=False,
quant_scheme="INT4 (W4A16)",
submitted_by="alice",
))
assert uploaded["called"] is True
assert _is_success(result)
# Re-submission must not overwrite the previous failed status file: the
# filename gets a timestamp suffix appended to keep both records.
assert uploaded["file_tag"] is not None
assert re.search(r"_\d{4}", uploaded["file_tag"]), uploaded["file_tag"]
def test_add_new_eval_allows_whitelisted_resubmit_for_failed_entry(monkeypatch, tmp_path):
status_root = tmp_path / "status"
pending_root = tmp_path / "pending"
status_dir = status_root / "eval"
pending_dir = pending_root / "eval"
status_dir.mkdir(parents=True)
pending_dir.mkdir(parents=True)
model_name = "org/quant-model"
dedup_key = f"{model_name}_main_AutoRound_4bit_int4_INT4 (W4A16)"
failed_entry = {
"model": model_name,
"revision": "main",
"quant_type": "AutoRound",
"precision": "4bit",
"weight_dtype": "int4",
"compute_dtype": "INT4 (W4A16)",
"status": "Eval Failed",
}
(status_dir / "failed.json").write_text(json.dumps(failed_entry), encoding="utf-8")
pending_entry = dict(failed_entry, status="Pending")
(pending_dir / "stale_request_copy.json").write_text(json.dumps(pending_entry), encoding="utf-8")
monkeypatch.setattr(submit_module, "GIT_STATUS_PATH", str(status_root))
monkeypatch.setattr(submit_module, "GIT_REQUESTS_PATH", str(pending_root))
monkeypatch.setattr(submit_module, "SIZE_WHITELIST", {"alice"})
monkeypatch.setattr(submit_module, "_EVAL_REQUESTED", {dedup_key})
monkeypatch.setattr(submit_module, "_SUBMITTER_DATES", {})
monkeypatch.setattr(submit_module, "_load_eval_cache", lambda: None)
monkeypatch.setattr(submit_module, "_common_pre_checks", lambda *_args, **_kwargs: None)
monkeypatch.setattr(
submit_module,
"is_model_on_hub",
lambda **_kwargs: (
True,
"",
{"architectures": ["TestArch"], "quantization_config": {"quant_method": "AutoRound"}},
),
)
monkeypatch.setattr(
submit_module,
"validate_quantization_scheme",
lambda *_args, **_kwargs: (True, SimpleNamespace(name="INT4 (W4A16)", precision="4bit", weight_dtype="int4", bits=4, hardware="A100", script="auto_eval"), "AutoRound"),
)
monkeypatch.setattr(
submit_module.API,
"model_info",
lambda **_kwargs: SimpleNamespace(cardData={"license": "apache-2.0"}, likes=0),
)
monkeypatch.setattr(
submit_module,
"check_model_card",
lambda *_args, **_kwargs: (True, "", SimpleNamespace(text="x" * 300, data=SimpleNamespace(tags=[]))),
)
monkeypatch.setattr(submit_module, "get_model_tags", lambda *_args, **_kwargs: [])
monkeypatch.setattr(submit_module, "is_license_approved", lambda *_args, **_kwargs: True)
monkeypatch.setattr(submit_module, "get_quantized_model_parameters_memory", lambda *_args, **_kwargs: (7.0, 3.5))
monkeypatch.setattr(submit_module, "estimate_weight_memory_gb", lambda *_args, **_kwargs: 5.0)
monkeypatch.setattr(submit_module, "select_gpu_with_override", lambda *_args, **_kwargs: ("A100", 1))
monkeypatch.setattr(submit_module, "get_gpu_display_name", lambda value: value)
monkeypatch.setattr(submit_module, "compute_single_eta", lambda *_args, **_kwargs: 1)
monkeypatch.setattr(submit_module, "format_eta", lambda *_args, **_kwargs: "1h")
uploaded = {"called": False, "file_tag": None}
def _fake_upload(entry, user_name, model_path, file_tag, model, task_label="eval"):
uploaded["called"] = True
uploaded["file_tag"] = file_tag
monkeypatch.setattr(submit_module, "_upload_to_hub", _fake_upload)
result = _consume_generator(add_new_eval(
model=model_name,
revision="main",
private=False,
compute_dtype="INT4 (W4A16)",
submitted_by="alice",
))
assert uploaded["called"] is True
assert _is_success(result)
# Re-submission must not overwrite the previous failed status file: the
# filename gets a timestamp suffix appended to keep both records.
assert uploaded["file_tag"] is not None
assert re.search(r"_\d{4}", uploaded["file_tag"]), uploaded["file_tag"]
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Test 1: auto_eval with nytopop/Qwen3-30B-A3B.w4a16
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_auto_eval():
model_name = "nytopop/Qwen3-30B-A3B.w4a16"
compute_dtype = "INT4 (W4A16)" # what the UI passes
print(f"\n{'#'*70}")
print(f" TEST: auto_eval model={model_name}")
print(f"{'#'*70}")
config, info = inspect_model(model_name)
# ββ Step-by-step validation ββββββββββββββββββββββββββββββββββββββββββ
print(f"\n--- Step 1: Quantization scheme validation ---")
qc = getattr(config, "quantization_config", None) if config else None
is_valid, scheme, detected_method = validate_quantization_scheme(qc, compute_dtype)
print(f" is_valid: {is_valid}")
print(f" scheme: {scheme}")
print(f" detected_method: {detected_method}")
if scheme:
print(f" scheme.name: {scheme.name}")
print(f" scheme.precision: {scheme.precision}")
print(f" scheme.weight_dtype: {scheme.weight_dtype}")
print(f" scheme.bits: {scheme.bits}")
print(f" scheme.hardware: {scheme.hardware}")
print(f" scheme.script: {scheme.script}")
# ββ Step 2: Model size βββββββββββββββββββββββββββββββββββββββββββββββ
print(f"\n--- Step 2: Model size (get_quantized_model_parameters_memory) ---")
if info:
quant_method = detected_method.lower() if detected_method else ""
precision = scheme.precision if scheme else "4bit"
print(f" quant_method arg: '{quant_method}'")
print(f" bits arg: '{precision}'")
print(f" KNOWN_SIZE_FACTOR has '{quant_method}': {quant_method in KNOWN_SIZE_FACTOR}")
params_b, size_gb = get_quantized_model_parameters_memory(
info, quant_method=quant_method, bits=precision
)
print(f" params_b: {params_b}")
print(f" size_gb: {size_gb}")
# Also test get_model_size for comparison
print(f"\n--- Step 2b: get_model_size (FP-style) ---")
params_b2, size_gb2 = get_model_size(info, precision=precision)
print(f" params_b: {params_b2}")
print(f" size_gb: {size_gb2}")
else:
params_b = None
# ββ Step 3: VRAM estimation ββββββββββββββββββββββββββββββββββββββββββ
print(f"\n--- Step 3: VRAM estimation ---")
if params_b:
bits = PRECISION_TO_BITS.get(precision, 4)
est_mem = estimate_weight_memory_gb(params_b, bits=bits, overhead_factor=4.4)
print(f" bits: {bits}")
print(f" estimated_vram: {est_mem} GB")
else:
print(f" SKIPPED (no params)")
est_mem = None
# ββ Step 4: GPU selection ββββββββββββββββββββββββββββββββββββββββββββ
print(f"\n--- Step 4: GPU selection ---")
if est_mem:
gpu_type, gpu_nums = select_gpu(est_mem)
print(f" gpu_type: {gpu_type}")
print(f" gpu_nums: {gpu_nums}")
# ββ Step 5: Call add_new_eval end-to-end βββββββββββββββββββββββββββββ
print(f"\n--- Step 5: add_new_eval (end-to-end) ---")
result = _consume_generator(add_new_eval(
model=model_name,
revision="main",
private=False,
compute_dtype=compute_dtype,
))
print(f" Result: {result}")
# ββ Validate expected values βββββββββββββββββββββββββββββββββββββββββ
print(f"\n--- Validation checks ---")
errors = []
if not is_valid:
errors.append(f"FAIL: Model should be detected as W4A16 quantized but is_valid={is_valid}")
if params_b is not None:
if not (25 <= params_b <= 35):
errors.append(f"WARN: Expected params ~30B, got {params_b}B")
else:
errors.append("FAIL: params_b is None")
if _is_error(result):
errors.append(f"FAIL: add_new_eval returned error: {result[:200]}")
if errors:
for e in errors:
print(f" β {e}")
else:
print(f" β
All checks passed")
return len(errors) == 0
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Test 2: auto_quant with Qwen/Qwen3-30B-A3B
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_auto_quant():
model_name = "Qwen/Qwen3-30B-A3B"
quant_scheme = "INT4 (W4A16)"
print(f"\n{'#'*70}")
print(f" TEST: auto_quant model={model_name}")
print(f"{'#'*70}")
config, info = inspect_model(model_name)
# ββ Step 1: Confirm NOT quantized ββββββββββββββββββββββββββββββββββββ
print(f"\n--- Step 1: Confirm model is FP (not quantized) ---")
qc = getattr(config, "quantization_config", None) if config else None
print(f" quantization_config: {qc}")
if qc:
print(f" β Model appears quantized β auto_quant should reject it")
torch_dtype = getattr(config, "torch_dtype", None)
input_dtype = str(torch_dtype) if torch_dtype else "float16"
input_bits = SUPPORTED_INPUT_DTYPES.get(input_dtype)
print(f" torch_dtype: {torch_dtype}")
print(f" input_dtype: {input_dtype}")
print(f" input_bits: {input_bits}")
# ββ Step 2: Model size (FP) ββββββββββββββββββββββββββββββββββββββββββ
print(f"\n--- Step 2: Model size (FP) ---")
params_b = None
size_gb = None
if info:
fp_label = "16bit" if input_bits == 16 else "32bit"
params_b, size_gb = get_model_size(info, precision=fp_label)
print(f" precision arg: '{fp_label}'")
print(f" params_b: {params_b}")
print(f" size_gb: {size_gb}")
# ββ Step 3: Layer count ββββββββββββββββββββββββββββββββββββββββββββββ
print(f"\n--- Step 3: Layer count ---")
num_layers = get_num_layers(config) if config else None
print(f" num_layers: {num_layers}")
# ββ Step 4: Quantization VRAM ββββββββββββββββββββββββββββββββββββββββ
print(f"\n--- Step 4: Quantization VRAM ---")
quant_mem = None
if size_gb and num_layers:
quant_mem = estimate_quantization_memory_gb(size_gb, num_layers, overhead_factor=1.5)
print(f" model_weight_gb: {size_gb}")
print(f" num_layers: {num_layers}")
print(f" quant_vram: {quant_mem} GB")
else:
print(f" SKIPPED (size_gb={size_gb}, num_layers={num_layers})")
# ββ Step 5: Eval VRAM (post-quantization) ββββββββββββββββββββββββββββ
print(f"\n--- Step 5: Eval VRAM (post-quant W4A16) ---")
scheme = SUPPORTED_QUANT_SCHEMES.get(quant_scheme)
eval_mem = None
if params_b and scheme:
eval_mem = estimate_weight_memory_gb(params_b, bits=scheme.bits, overhead_factor=4.4)
print(f" params_b: {params_b}")
print(f" output_bits: {scheme.bits}")
print(f" eval_vram: {eval_mem} GB")
quant_model_size_gb = round(params_b * (scheme.bits / 8.0), 2)
print(f" quant_model_size_gb: {quant_model_size_gb}")
# ββ Step 6: GPU selection ββββββββββββββββββββββββββββββββββββββββββββ
print(f"\n--- Step 6: GPU selection ---")
if quant_mem:
qgpu, qn = select_gpu(quant_mem)
print(f" Quantization: {qgpu} Γ {qn}")
if eval_mem:
egpu, en = select_gpu(eval_mem)
print(f" Evaluation: {egpu} Γ {en}")
# ββ Step 7: Call add_new_quant end-to-end ββββββββββββββββββββββββββββ
print(f"\n--- Step 7: add_new_quant (end-to-end) ---")
result = _consume_generator(add_new_quant(
model=model_name,
revision="main",
private=False,
quant_scheme=quant_scheme,
))
print(f" Result: {result}")
# ββ Validate expected values βββββββββββββββββββββββββββββββββββββββββ
print(f"\n--- Validation checks ---")
errors = []
if qc:
errors.append("FAIL: FP model has quantization_config β auto_quant should reject")
if params_b is not None:
if not (25 <= params_b <= 35):
errors.append(f"WARN: Expected params ~30B, got {params_b}B")
else:
errors.append("FAIL: params_b is None")
if input_bits is None:
errors.append(f"FAIL: input_dtype '{input_dtype}' not in SUPPORTED_INPUT_DTYPES")
if num_layers is None or num_layers <= 0:
errors.append(f"FAIL: Could not determine num_layers: {num_layers}")
if _is_error(result):
errors.append(f"FAIL: add_new_quant returned error: {result[:200]}")
if errors:
for e in errors:
print(f" β {e}")
else:
print(f" β
All checks passed")
return len(errors) == 0
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Test 3: Cross-check β call auto_eval on FP model (should fail)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_auto_eval_rejects_fp_model():
"""auto_eval should reject an FP (non-quantized) model."""
model_name = "Qwen/Qwen3-30B-A3B"
print(f"\n{'#'*70}")
print(f" TEST: auto_eval should REJECT FP model: {model_name}")
print(f"{'#'*70}")
result = _consume_generator(add_new_eval(
model=model_name,
revision="main",
private=False,
compute_dtype="INT4 (W4A16)",
))
print(f" Result: {result}")
if "color: red" in result or "color:red" in result:
print(f" β
Correctly rejected FP model")
return True
else:
print(f" β FAIL: Should have rejected FP model but got: {result[:200]}")
return False
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Test 4: Cross-check β call auto_quant on quantized model (should fail)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_auto_quant_rejects_quantized_model():
"""auto_quant should reject an already-quantized model."""
model_name = "nytopop/Qwen3-30B-A3B.w4a16"
print(f"\n{'#'*70}")
print(f" TEST: auto_quant should REJECT quantized model: {model_name}")
print(f"{'#'*70}")
result = _consume_generator(add_new_quant(
model=model_name,
revision="main",
private=False,
quant_scheme="INT4 (W4A16)",
))
print(f" Result: {result}")
if _is_error(result) or _is_warning(result):
print(f" β
Correctly rejected quantized model")
return True
else:
print(f" β FAIL: Should have rejected quantized model but got: {result[:200]}")
return False
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Main
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if __name__ == "__main__":
print("=" * 70)
print(" submit.py Unit Tests")
print("=" * 70)
results = {}
results["test_auto_eval"] = test_auto_eval()
results["test_auto_quant"] = test_auto_quant()
results["test_auto_eval_rejects_fp"] = test_auto_eval_rejects_fp_model()
results["test_auto_quant_rejects_quantized"] = test_auto_quant_rejects_quantized_model()
print(f"\n{'='*70}")
print(" SUMMARY")
print(f"{'='*70}")
for name, passed in results.items():
status = "β
PASS" if passed else "β FAIL"
print(f" {status} {name}")
total = len(results)
passed = sum(1 for v in results.values() if v)
print(f"\n {passed}/{total} tests passed")
print(f"{'='*70}")
|