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
logging.warning("TMA load is disabled as there is no TMA descriptor support!")
963
+
warnings.warn("TMA load is disabled as there is no TMA descriptor support!")
962
964
963
965
ifUSE_TMA_STOREandnotutils.HAS_TMA_DESC:
964
966
USE_TMA_STORE=False
965
-
logging.warning("TMA store is disabled as there is no TMA descriptor support!")
967
+
warnings.warn("TMA store is disabled as there is no TMA descriptor support!")
966
968
967
969
# TODO(shikaili): Check the readniess of WS on ROCm side in Meta's Triton.
968
970
ifuse_warp_specializationandtorch.version.hip:
969
-
logging.warning(
970
-
"Warp specialization is disabled as it is not supported on ROCm."
971
-
)
971
+
warnings.warn("Warp specialization is disabled as it is not supported on ROCm.")
972
972
use_warp_specialization=False
973
973
974
974
ifuse_warp_specializationandnot_HAS_WS_SUPPORT:
975
-
logging.warning(
975
+
warnings.warn(
976
976
"Warp specialization is disabled as the Triton build in current environment doesn't have such support. Please build from https://github.com/facebookexperimental/triton/tree/ws-3.2.x to enable it for best performance on Nvidia's SM90 GPUs."
0 commit comments