Skip to content

Commit

Permalink
#0: clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
yugaoTT committed Dec 10, 2024
1 parent 69c218a commit 0a79e22
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 10 deletions.
4 changes: 2 additions & 2 deletions tests/ttnn/unit_tests/operations/test_matmul.py
Original file line number Diff line number Diff line change
Expand Up @@ -992,8 +992,8 @@ def run_matmul_1d_multiple_output_blocks_per_core(
per_core_N = n // num_cores // 32 + uneven_width
else:
in0_block_w = k // 32
per_core_M = (m // 32 // num_cores + uneven_width,)
per_core_N = (n // 32,)
per_core_M = m // 32 // num_cores + uneven_width
per_core_N = n // 32
out_block_h = per_core_M // num_out_block_h
out_block_w = per_core_N // num_out_block_w
out_subblock_h, out_subblock_w, _ = find_max_subblock(out_block_h, out_block_w)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@

#include "compute_kernel_api/eltwise_unary/sfpu_split_includes.h"

#include "debug/dprint.h"

// Please update
// tests/tt_metal/tt_metal/perf_microbenchmark/1_compute_mm/kernels/bmm_large_block_zm_fused_bias_activation_copy.cpp
// when making any changes to this file.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
#include "dataflow_api.h"
#include "hostdevcommon/common_values.hpp"

#include "debug/dprint.h"

void kernel_main() {
// in0 mcast args
const uint32_t in0_mcast_sender_noc_x = get_arg_val<uint32_t>(0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
#include "hostdevcommon/common_values.hpp"
#include "ttnn/cpp/ttnn/operations/ccl/kernel_common/worker_sync_utils.hpp"

#include "debug/dprint.h"

void kernel_main() {
uint32_t rt_args_idx = 0;
// in0 tensor args
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
#include "hostdevcommon/common_values.hpp"
#include "ttnn/cpp/ttnn/operations/ccl/kernel_common/worker_sync_utils.hpp"

#include "debug/dprint.h"

void kernel_main() {
// READER
uint32_t rt_args_idx = 0;
Expand Down

0 comments on commit 0a79e22

Please sign in to comment.