You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Searching for other triton versions that supports the same config
1015
+
fortry_triton_versioninsupported_triton_versions:
1016
+
iftry_triton_version==triton_version:
1017
+
continue
1018
+
try_config_file_path=os.path.join(
1019
+
os.path.dirname(os.path.realpath(__file__)),
1020
+
"configs",
1021
+
f"triton_{try_triton_version.replace('.', '_')}",
1022
+
json_file_name,
1023
+
)
1024
+
ifos.path.exists(try_config_file_path):
1025
+
withopen(try_config_file_path) asf:
1026
+
logger.warning(
1027
+
f"Config file not found at {config_file_path}. Fallback to triton version {try_triton_version} and use MoE kernel config from {try_config_file_path}. Performance might be sub-optimal!",
0 commit comments