fix: banner uses _os instead of os (not yet imported)
This commit is contained in:
@@ -5,14 +5,15 @@
|
||||
# DeepSeek V4 NVFP4 Patch — Version Banner (printed at import time)
|
||||
# ==============================================================================
|
||||
import datetime as _dt
|
||||
_git_commit = os.popen("git -C /root/nvidia-meeting/deepseek-v4-quant rev-parse --short HEAD 2>/dev/null || echo 'unknown'").read().strip()
|
||||
import os as _os
|
||||
_git_commit = _os.popen("git -C /root/nvidia-meeting/deepseek-v4-quant rev-parse --short HEAD 2>/dev/null || echo 'unknown'").read().strip()
|
||||
print(f"""
|
||||
{'='*70}
|
||||
DeepSeek V4 NVFP4 Patch
|
||||
{'='*70}
|
||||
Commit: {_git_commit}
|
||||
Loaded: {_dt.datetime.now().strftime('%Y-%m-%d %H:%M:%S UTC')}
|
||||
Node: {os.uname().nodename}
|
||||
Node: {_os.uname().nodename}
|
||||
|
||||
Architecture:
|
||||
wo_a → FP8 + DeepGEMM block scale (BMM einsum)
|
||||
|
||||
Reference in New Issue
Block a user