Skip to content

Commit 1af89db

Browse files
committed
fix: attempt to fix CI failures related to missing headers
1 parent 411a21b commit 1af89db

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

=2.12.0.dev

Whitespace-only changes.

tests/py/dynamo/conversion/test_index_put_aten.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,8 @@ def forward(self, src, values, idx0, idx1):
875875
# ------------------------------------------------------------------
876876

877877
@pytest.mark.skipif(
878-
ENABLED_FEATURES.tensorrt_rtx, reason="ScatterAdd plugin not available in TRT RTX"
878+
ENABLED_FEATURES.tensorrt_rtx,
879+
reason="ScatterAdd plugin not available in TRT RTX",
879880
)
880881
def test_kv_cache_duplicate_slot_writes(self):
881882
"""KV-cache style: linear projection → index_put(accumulate=True) into
@@ -916,7 +917,8 @@ def forward(self, tokens, cache):
916917
)
917918

918919
@pytest.mark.skipif(
919-
ENABLED_FEATURES.tensorrt_rtx, reason="ScatterAdd plugin not available in TRT RTX"
920+
ENABLED_FEATURES.tensorrt_rtx,
921+
reason="ScatterAdd plugin not available in TRT RTX",
920922
)
921923
def test_sparse_embedding_duplicate_seq_ids(self):
922924
"""Sparse embedding accumulation: embedding lookup → index_put(accumulate=True)
@@ -960,7 +962,8 @@ def forward(self, token_ids, accum):
960962
)
961963

962964
@pytest.mark.skipif(
963-
ENABLED_FEATURES.tensorrt_rtx, reason="ScatterAdd plugin not available in TRT RTX"
965+
ENABLED_FEATURES.tensorrt_rtx,
966+
reason="ScatterAdd plugin not available in TRT RTX",
964967
)
965968
def test_histogram_conv_duplicate_bin_ids(self):
966969
"""Histogram accumulation: Conv1d → index_put(accumulate=True) into histogram

0 commit comments

Comments
 (0)