- GPU は個体差を吸収するため、やや高めの電圧設定で動作している
- 電圧設定を下げることで、若干のピーク性能劣化(-5%)と引き換えに大幅な省電力化(-20%)が期待できる
- 設定によってはクラッシュやフリーズの可能性があるため、自己責任で行うこと
- Overclock と違って永続的な故障リスクは低いと思われる。ダメなら戻そう
消費電力は電圧の二乗に比例する。そのため、電圧を下げれば消費電力も下がる。
RVC-Project/Retrieval-based-Voice-Conversion-WebUI を RTX50 シリーズで動かす
| ■■□□□□□□□□■■ | |
| ■■□ □■■ | |
| □□□ □□□ | |
| □ □ | |
| □ □ | |
| □ □ | |
| □□□ □□ | |
| ■■□□□□□□□ □■ |
| // ==UserScript== | |
| // @name Redirect for akizuki catalog | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2024-01-26 | |
| // @description Redirects from the old akizuki product page to the new one. | |
| // @author td2sk | |
| // @match https://akizukidenshi.com/catalog/g/*/ | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=akizukidenshi.com | |
| // @grant none | |
| // ==/UserScript== |
| # yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2 | |
| properties: | |
| configurationVersion: "0.2.0" | |
| resources: | |
| # Show FileExt (reboot required) | |
| - resource: Registry | |
| directives: | |
| description: Show extensions | |
| allowPrerelease: true | |
| settings: |
| import pcbnew | |
| # index (1-origin) to Reference Text | |
| def diode(index: int) -> str: | |
| return f"D{index}" | |
| def switch(index: int) -> str: | |
| return f"SW{index}" |