From 987a23f84f8705c0566a47aeda2132fa33a82618 Mon Sep 17 00:00:00 2001 From: JRPan <25518778+JRPan@users.noreply.github.com> Date: Wed, 3 Sep 2025 16:01:54 -0400 Subject: Fix correlation on A100 CUTLASS GEMM Kernels (#127) * 1. Add a queue to promote fairness CTA scheduling 2. Add a Perfect xbar interconnect option * remove merge queue * Should not change this * rename pending cta to allocated_ctas * run formatter --- .github/workflows/format_check.yml | 32 -------------------------------- .github/workflows/main.yml | 2 +- 2 files changed, 1 insertion(+), 33 deletions(-) delete mode 100644 .github/workflows/format_check.yml (limited to '.github') diff --git a/.github/workflows/format_check.yml b/.github/workflows/format_check.yml deleted file mode 100644 index db94ee0..0000000 --- a/.github/workflows/format_check.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Format Check - -on: - pull_request: - -jobs: - check-format: - runs-on: tgrogers-raid - steps: - - uses: actions/checkout@v4 - - name: Check code formatting - run: | - # Run the formatter to see if it would make any changes - /bin/bash ./format-code.sh - - # Check if there are any uncommitted changes - if git diff --quiet; then - echo "✅ Code is properly formatted" - else - echo "❌ Code formatting check failed. The following files need formatting:" - git diff --name-only - echo "" - echo "Please run the formatter locally and commit the changes:" - echo "/bin/bash ./format-code.sh" - exit 1 - fi - - # skip the runs in PRs. Will run in the merge queue - CI-Success: - runs-on: ubuntu-latest - steps: - - run: echo "CI skipped. Will run in the merge queue" \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0cb61e4..f576459 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ on: push: branches-ignore: - "gh-readonly-queue**" - merge_group: + pull_request: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: -- cgit v1.3