We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6462feb commit 31c11e0Copy full SHA for 31c11e0
flashinfer/autotuner.py
@@ -482,8 +482,12 @@ def choose_one(
482
)
483
except Exception as e:
484
shapes = self._get_input_sizes(tensors)
485
+ logger.warning(
486
+ f"[Autotuner]: Skipping tactic {r} {tac}, due to failure while profiling."
487
+ )
488
- logger.error(
489
+ # Log stacktrace as debug to not spam log
490
+ logger.debug(
491
f"[Autotuner]: Failed when profiling {r} {tac}, shapes={shapes}. Error occurred: {e}"
492
493
0 commit comments