Update flex_attention.py

This commit is contained in:
Daniel Han 2024-11-06 13:09:29 -08:00
commit 38e3cbb80a

View file

@ -20,7 +20,7 @@ torch_compile_options = {
"epilogue_fusion" : True,
"max_autotune" : True,
"shape_padding" : True,
"trace.enabled" : False, # Output Triton kernel outputs!
"trace.enabled" : os.environ.get("UNSLOTH_COMPILE_DEBUG", "0") == "1",
"triton.cudagraphs" : False,
}