Skip to content

Commit be55f58

Browse files
authored
fix param (Dao-AILab#90)
1 parent f37ea85 commit be55f58

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

quack/gemm_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def prune_invalid_gemm_configs(configs, named_args: dict, **kwargs):
101101
configs = [conf for conf in configs if conf.kwargs["config"].cluster_n == 1]
102102
if device_capacity == 9:
103103
configs = [conf for conf in configs if conf.kwargs["config"].tile_n != 208]
104-
configs = [conf for conf in configs if not conf.kwargs["config"].clc]
104+
configs = [conf for conf in configs if not conf.kwargs["config"].is_dynamic_persistent]
105105
return configs
106106

107107

0 commit comments

Comments
 (0)