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 f509a20 commit d3c8429Copy full SHA for d3c8429
tests/conftest.py
@@ -740,6 +740,10 @@ def __init__(
740
)
741
742
if not kwargs.get("compilation_config", None):
743
+ # Note(@tdoublep): This is set to 4 because some tests (e.g., hybrid
744
+ # model tests) may set max_num_seqs=4. If min cudagraph_capture_size is
745
+ # set to larger than max_num_seqs, then it will lead to *no* graphs
746
+ # being captured which can trigger edge cases that we don't handle yet.
747
kwargs["compilation_config"] = {"cudagraph_capture_sizes": [4]}
748
749
with init_ctx:
0 commit comments