Skip to content

Commit 4b7cdd6

Browse files
committed
Fix
Signed-off-by: Chenjie Luo <[email protected]>
1 parent b5e6fc5 commit 4b7cdd6

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

docs/source/_templates/autosummary/module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
:recursive:
1212
{% for item in modules %}
1313
{% set full_item = fullname + '.' + item.split('.')[-1] %}
14-
{% if '.plugins.' not in full_item or full_item == 'modelopt.torch.opt.plugins.huggingface' or 'modelopt.torch.quantization.backends' not in full_item %}
14+
{% if '.plugins.' not in full_item or full_item == 'modelopt.torch.opt.plugins.huggingface' %}
1515
{{ full_item }}
1616
{% endif %}
1717
{%- endfor %}

modelopt/torch/quantization/backends/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,4 @@
1515

1616
"""Quantization backends."""
1717

18-
import platform
19-
20-
if platform.system() != "Windows":
21-
from .fp8_per_tensor_gemm import *
2218
from .gemm_registry import *
23-
from .nvfp4_gemm import *

0 commit comments

Comments
 (0)