Skip to content

Commit

Permalink
#0: Add programming examples to CI (#15682)
Browse files Browse the repository at this point in the history
  • Loading branch information
tt-dma authored Dec 4, 2024
1 parent 232b9ac commit b756309
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions tests/scripts/run_tt_metal.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,15 +130,26 @@


PROGRAMMING_EXAMPLE_ENTRIES = (
TestEntry("programming_examples/loopback", "programming_examples/loopback"),
TestEntry("programming_examples/add_2_integers_in_compute", "programming_examples/add_2_integers_in_compute"),
TestEntry("programming_examples/add_2_integers_in_riscv", "programming_examples/add_2_integers_in_riscv"),
TestEntry("programming_examples/eltwise_binary", "programming_examples/eltwise_binary"),
TestEntry("programming_examples/eltwise_sfpu", "programming_examples/eltwise_sfpu"),
TestEntry("programming_examples/matmul_single_core", "programming_examples/matmul_single_core"),
TestEntry(
"programming_examples/hello_world_datamovement_kernel", "programming_examples/hello_world_datamovement_kernel"
),
TestEntry(
"programming_examples/hello_world_datamovement_kernel", "programming_examples/hello_world_datamovement_kernel"
),
TestEntry("programming_examples/hello_world_datatypes_kernel", "programming_examples/hello_world_datatypes_kernel"),
TestEntry("programming_examples/loopback", "programming_examples/loopback"),
TestEntry("programming_examples/matmul_multi_core", "programming_examples/matmul_multi_core"),
TestEntry("programming_examples/matmul_multicore_reuse", "programming_examples/matmul_multicore_reuse"),
TestEntry("programming_examples/contributed/vecadd", "programming_examples/contributed/vecadd"),
# Does not work on WH yet.
# TestEntry("programming_examples/matmul_multicore_reuse_mcast", "programming_examples/matmul_multicore_reuse_mcast"),
TestEntry("programming_examples/matmul_single_core", "programming_examples/matmul_single_core"),
TestEntry("programming_examples/pad_multi_core", "programming_examples/pad_multi_core"),
TestEntry("programming_examples/shard_data_rm", "programming_examples/shard_data_rm"),
TestEntry("programming_examples/contributed/vecadd", "programming_examples/contributed/vecadd"),
)


Expand Down

0 comments on commit b756309

Please sign in to comment.