From b7563094441a60a6164d5ade777ea31cfa4c5d55 Mon Sep 17 00:00:00 2001 From: David Ma <149437891+tt-dma@users.noreply.github.com> Date: Wed, 4 Dec 2024 04:42:52 -0800 Subject: [PATCH] #0: Add programming examples to CI (#15682) https://github.com/tenstorrent/tt-metal/actions/runs/12146809637 --- tests/scripts/run_tt_metal.py | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/tests/scripts/run_tt_metal.py b/tests/scripts/run_tt_metal.py index 7f158ca3edc..a34cdf723d8 100644 --- a/tests/scripts/run_tt_metal.py +++ b/tests/scripts/run_tt_metal.py @@ -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"), )