Rate this Page
โ˜… โ˜… โ˜… โ˜… โ˜…

torch.compiler.disable#

torch.compiler.disable(fn=None, recursive=True, *, reason=None)[source]#

This function provides a decorator to disable compilation on a function. It also provides the option of recursively disabling called functions.

Parameters
  • fn (optional) โ€“ The function to disable

  • recursive (optional) โ€“ A boolean value indicating whether the disabling should be recursive.

  • reason (optional) โ€“ A string value indicating the reason for disabling the function.