From cd74710eef56ee91f761f23b6bf310bf913a65b5 Mon Sep 17 00:00:00 2001 From: Andrew Fuller Date: Thu, 23 Jan 2025 02:52:59 +0000 Subject: [PATCH] delete me --- .github/workflows/code-analysis.yaml | 20 ++++++++++++++++++++ README.md | 2 ++ 2 files changed, 22 insertions(+) diff --git a/.github/workflows/code-analysis.yaml b/.github/workflows/code-analysis.yaml index 9e4d695877d3..fc93e1d46a2f 100644 --- a/.github/workflows/code-analysis.yaml +++ b/.github/workflows/code-analysis.yaml @@ -91,6 +91,12 @@ jobs: fetch-depth: 0 submodules: recursive clean: true + lfs: true + + - name: Update LFS files + if: github.ref_name != 'main' && !inputs.full-scan + run: | + git submodule foreach git lfs pull - name: Create baseline if: github.ref_name != 'main' && !inputs.full-scan @@ -125,6 +131,15 @@ jobs: # Suppress clang-tidy to first get an up-to-date build tree ln -sf /usr/bin/true ./clang-tidy-shim + # For Debug, check md5sum of a problematic library + cd tt_metal/third_party/umd + git status + git ls-files libs/x86_64 + cd ../../.. + ls -l tt_metal/third_party/umd/device/libs/x86_64/libcreate_ethernet_map.a || true + file tt_metal/third_party/umd/device/libs/x86_64/libcreate_ethernet_map.a || true + md5sum tt_metal/third_party/umd/device/libs/x86_64/libcreate_ethernet_map.a || true + cmake --preset clang-tidy -DCMAKE_CXX_CLANG_TIDY=$(pwd)/clang-tidy-shim -DCMAKE_C_CLANG_TIDY=$(pwd)/clang-tidy-shim nice -n 19 cmake --build --preset clang-tidy @@ -178,6 +193,11 @@ jobs: # Symlink tomfoolery here so that Ninja believes the build command has not changed from the previous run ln -sf $(which clang-tidy-17) ./clang-tidy-shim + # For Debug, check md5sum of a problematic library + ls -l tt_metal/third_party/umd/device/libs/x86_64/libcreate_ethernet_map.a || true + file tt_metal/third_party/umd/device/libs/x86_64/libcreate_ethernet_map.a || true + md5sum tt_metal/third_party/umd/device/libs/x86_64/libcreate_ethernet_map.a || true + cmake --preset clang-tidy -DCMAKE_CXX_CLANG_TIDY=$(pwd)/clang-tidy-shim -DCMAKE_C_CLANG_TIDY=$(pwd)/clang-tidy-shim nice -n 19 cmake --build --preset clang-tidy mkdir -p out diff --git a/README.md b/README.md index d06621a08fa1..d2ee76143949 100644 --- a/README.md +++ b/README.md @@ -154,3 +154,5 @@ Get started with [simple kernels](https://docs.tenstorrent.com/tt-metalium/lates - [Matmul OP on Multi_core (Basic)](./tech_reports/prog_examples/matmul_multi_core/matmul_multi_core.md) - [Matmul Multi_core Reuse (Optimized)](./tech_reports/prog_examples/matmul_multi_core_optimized/data_reuse.md) - [Matmul Multi_core Multi-Cast (Optimized)](./tech_reports/prog_examples/matmul_multi_core_optimized/data_mcast.md) + +# no-op