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
This bug been narrowed down to an issue in TorchScript. To read more about it please see this issue in NVFuser. As a workaround, one of the following can be done:
Run with environment variable NVTE_BIAS_GELU_NVFUSION=0 to disable bias and gelu fusion via NVFuser in TE or run with PYTORCH_JIT=0 to disable jit fusion altogether. NOTE: This option might impact performance.
If doing file I/O, explicitly set the encoding format. For .e.g. with open(input_file, "r", encoding="utf-8") as f:
When using the
TransformerLayer
orLayerNormMLP
APIs, the preferred encoding format is getting changed. Here is a repro script:The text was updated successfully, but these errors were encountered: