This commit is contained in:
Srini Iyer 2025-02-14 19:20:17 +00:00
parent da2cf02179
commit 8be8c85a63
3 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ try:
RMSNorm = FusedRMSNorm
except (ImportError, ModuleNotFoundError):
print('Apex not found. Using nn.RMSNorm')
print("Apex not found. Using nn.RMSNorm")
RMSNorm = nn.RMSNorm
if int(os.environ.get("BLT_ALLOW_MISSING_FLEX_ATTENTION", False)) == 0:

View file

@ -22,7 +22,7 @@ try:
RMSNorm = FusedRMSNorm
except (ImportError, ModuleNotFoundError):
print('Apex not found. Using nn.RMSNorm')
print("Apex not found. Using nn.RMSNorm")
RMSNorm = nn.RMSNorm
logger = logging.getLogger()

View file

@ -26,7 +26,7 @@ try:
RMSNorm = FusedRMSNorm
except (ImportError, ModuleNotFoundError):
print('Apex not found. Using nn.RMSNorm')
print("Apex not found. Using nn.RMSNorm")
RMSNorm = nn.RMSNorm
logger = logging.getLogger()