Mode | SM Utilization | Power Increase | Temp Change | Notes |
---|---|---|---|---|
Vulkan | Medium-low | +0W (baseline) | +0°C | Auto fallback, relatively low load |
CUDA (On) | 100% | ~+250W | ~+8°C | Full load, remains thermally stable |
ID | Python Version | PyTorch Version | Inference Mode | GPU Support Status | Avg. Time per Image | GPU Utilization | Notes |
---|---|---|---|---|---|---|---|
① | 3.9.13 | 2.4.1 | Vulkan fallback | ❌ Not supported (sm_120) | ~2.12 sec | Low (occasional spikes) | Auto fallback to Vulkan/NCNN |
② | 3.13.7 | 2.9.0 Nightly | Vulkan fallback | ✅ Supported (sm_120, CUDA off) | ~1.94 sec | Medium-low | Forced with --nocuda |
③ | 3.13.7 | 2.9.0 Nightly | CUDA | ✅ Supported (sm_120, enabled) | ~1.04 sec | High (stable 100%) | Full CUDA inference enabled |
模式 | SM 使用率 | 功耗增加 | 溫度變化 | 備註 |
---|---|---|---|---|
Vulkan | 中等偏低 | +0W(基準) | +0°C | 自動 fallback,負載不高 |
CUDA(啟用) | 100% | 約 +250W | 約 +8°C | 滿負載運行,仍保持穩定 |
編號 | Python版本 | PyTorch版本 | 推論模式 | GPU支援狀態 | 每張處理時間 | GPU使用率 | 備註 |
---|---|---|---|---|---|---|---|
① | 3.9.13 | 2.4.1 | Vulkan fallback | ❌ 不支援 sm_120 | 約 2.12 秒 | 低(偶爾跳高) | 自動 fallback |
② | 3.13.7 | 2.9.0 Nightly | Vulkan fallback | ✅ 支援 sm_120 未啟用 CUDA | 約 1.94 秒 | 中等偏低 | 關閉CUDA |
③ | 3.13.7 | 2.9.0 Nightly | CUDA | ✅ 支援 sm_120 並已啟用 | 約 1.04 秒 | 高(穩定 100%) | 完整啟用 CUDA 模型推論 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
:: ------------------------------------------------------------------------------------------------------------ | |
:: Clean Up ASUS All | |
:: ------------------------------------------------------------------------------------------------------------ | |
:: The tool helps to clean up all ASUS software from system | |
:: ------------------------------------------------------------------------------------------------------------ | |
:: Before running the tools, | |
:: 1. Complete backup your system. | |
:: 2. Disable ASUS Apps from BIOS (MyASUS and Armoury) | |
:: 3. Run ASUS remove tools (Armoury Crate Uninstall Tool.exe, or geek_uninstall.exe). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Memory threshold | |
THRESHOLD_AVAIL=10 # MemAvailable | |
THRESHOLD_FREE=10 # Free | |
# Loop to test memory | |
while true; do | |
# fetech memory status | |
TOTAL_MEM=$(grep MemTotal /proc/meminfo | awk '{print $2 / 1024}') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# test all files | |
for file in *; do | |
if [ -f "$file" ]; then | |
# read first 3 bytes | |
bytes=$(head -c 3 "$file" | od -An -t x1 | tr -d ' \n') | |
# test file bytes | |
case $bytes in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
:: ------------------------------------------------------------------------------------------------------------ | |
:: Clean Up ASUS All | |
:: ------------------------------------------------------------------------------------------------------------ | |
:: The tool helps to clean up all ASUS software from system | |
:: ------------------------------------------------------------------------------------------------------------ | |
:: Before running the tools, | |
:: 1. Complete backup your system. | |
:: 2. Disable ASUS Apps from BIOS (MyASUS and Armoury) | |
:: 3. Run ASUS remove tools (Armoury Crate Uninstall Tool.exe, or geek_uninstall.exe). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
:: ------------------------------------------------------------------------------------------------------------ | |
:: Backup Package Installation | |
:: ------------------------------------------------------------------------------------------------------------ | |
:: You should check errors from logs with 資料錯誤 (循環冗餘檢查) | |
echo Backup packages ... [email protected] | |
setlocal enabledelayedexpansion | |
:: backup package list |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error: | |
After installing this update, users may experience this error "0x800705b4" when launching windows defender application guard or windows sandbox | |
Fix: | |
Use the credentials of a local admin to create and set the following registry keys on the host OS then restart the host. | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Containers\CmService\Policy] | |
"DisableClone"=dword:00000001 | |
"DisableSnapshot"=dword:00000001 |
NewerOlder