Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
isdanni committed May 2, 2024
1 parent 7a471a3 commit 75ae9df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/TestCoverage.md
Expand Up @@ -3773,7 +3773,7 @@ There are 1 test cases, listed as following:
<summary>concat</summary>

```python
test_cases: Dict[str, Sequence[Any]] = {
test_cases: dict[str, Sequence[Any]] = {
"1d": ([1, 2], [3, 4]),
"2d": ([[1, 2], [3, 4]], [[5, 6], [7, 8]]),
"3d": (
Expand Down Expand Up @@ -9665,7 +9665,7 @@ node = onnx.helper.make_node(
)

trip_count = np.array(5).astype(np.int64)
seq_empty: List[Any] = []
seq_empty: list[Any] = []
seq_res = [x[: int(i)] for i in x]
cond = np.array(1).astype(bool)
expect(
Expand Down Expand Up @@ -9860,7 +9860,7 @@ node = onnx.helper.make_node(
trip_count = np.array(5).astype(np.int64)
cond = np.array(1).astype(bool)
seq_res = compute_loop_outputs(x, [x0], trip_count)
opt_seq_in: List[Any] = [x0]
opt_seq_in: list[Any] = [x0]
expect(
node,
inputs=[trip_count, cond, opt_seq_in],
Expand Down

0 comments on commit 75ae9df

Please sign in to comment.