File size: 290 Bytes
c50dde6
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import torch
from contextlib import suppress


def get_autocast(precision):
    if precision == 'amp':
        return torch.cuda.amp.autocast 
    elif precision in ['bfloat16', 'bf16']:
        return lambda: torch.cuda.amp.autocast(dtype=torch.bfloat16)
    else:
        return suppress