Comparing main...modular/v26.2 · modular/modular · GitHub
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: modular/modular
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: modular/modular
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: modular/v26.2
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 13 commits
  • 261 files changed
  • 6 contributors

Commits on Mar 19, 2026

  1. [Examples] Use max channel instead of max-nightly

    For the stable branch only
    
    MODULAR_ORIG_COMMIT_REV_ID: 23ec99327c1e6429a8d6e2242300cf8cea3132b6
    Ahajha authored and modularbot committed Mar 19, 2026
    Configuration menu
    Copy the full SHA
    db5529f View commit details
    Browse the repository at this point in the history
  2. [GC] Revert Migrate the GC from param closures to callable structs for

    fusion
    
    MODULAR_ORIG_COMMIT_REV_ID: 8ae6a1278b397d49e67e0ff961c3a10c17440bca
    knalbant authored and modularbot committed Mar 19, 2026
    Configuration menu
    Copy the full SHA
    0aab701 View commit details
    Browse the repository at this point in the history
  3. [Revert] This reverts commit 1bf8e6ea25aa64ad26b25c93d05cca4906b95eb7.

    MODULAR_ORIG_COMMIT_REV_ID: 9cdebef3bb7cdc6cca2c06b5ac31e873f962131e
    NathanSWard authored and modularbot committed Mar 19, 2026
    Configuration menu
    Copy the full SHA
    077262f View commit details
    Browse the repository at this point in the history
  4. [Kernels] Add more vendor BLAS shapes for AMD matmul

    Route additional (N, K) shapes to hipBLASLt on AMD:
    - (6144, 24576), (6144, 18432), (6144, 6144)
    
    Adds corresponding bf16 test coverage.
    
    MODULAR_ORIG_COMMIT_REV_ID: 5a734ee30eb36454052fb6ba8ffa2a34a3f2fdc3
    Ahajha authored and modularbot committed Mar 19, 2026
    Configuration menu
    Copy the full SHA
    9eb74cf View commit details
    Browse the repository at this point in the history
  5. [stdlib] Enable B300

    MODULAR_ORIG_COMMIT_REV_ID: d7cb73f6fc073f83eda80d4a9240a765e4b3b183
    Ahajha authored and modularbot committed Mar 19, 2026
    Configuration menu
    Copy the full SHA
    c8063bf View commit details
    Browse the repository at this point in the history
  6. Revert "[Release] Bump nightlies to 26.3"

    This should only be on main.
    
    MODULAR_ORIG_COMMIT_REV_ID: f532bd8b070384e3211a57d2c2e0abb621b772a7
    Ahajha authored and modularbot committed Mar 19, 2026
    Configuration menu
    Copy the full SHA
    07fc241 View commit details
    Browse the repository at this point in the history
  7. [Kernels] use wider load/store width for GPU concat

    When concatenating tensors at `axis=rank-1`, if the input tensors have
    an inner size that is a multiple of the SIMD width for that target, then
    use that size instead of generating a scalar copy loop.
    
    MODULAR_ORIG_COMMIT_REV_ID: 2674c8ba7b72ea3db522921417c311141918a9cc
    Ahajha authored and modularbot committed Mar 19, 2026
    Configuration menu
    Copy the full SHA
    b0d1504 View commit details
    Browse the repository at this point in the history
  8. [kernels] Preserve static shape in FP8 matmul TileTensor overload

    Remove `make_dims_unknown()` from `c_buf` in the TileTensor overload of
    `matmul_dynamic_scaled_fp8`. This call stripped the static N dimension,
    causing `matmul_dispatch_sm100` to fail its compile-time eligibility
    check and fall through to the cuBLAS vendor BLAS fallback for every FP8
    matmul.
    
    MODULAR_ORIG_COMMIT_REV_ID: d627decc14a9df6e3d8df70e6bff7f1aadfe3ad2
    JoeLoser authored and modularbot committed Mar 19, 2026
    Configuration menu
    Copy the full SHA
    e47f0ba View commit details
    Browse the repository at this point in the history
  9. [docs] Update GitHub links for 26.2 branch name

    MODULAR_ORIG_COMMIT_REV_ID: 4dac8eb69eb26ee0bf4ce53ee2a4cb6706b6e38c
    scottamain authored and modularbot committed Mar 19, 2026
    Configuration menu
    Copy the full SHA
    556aedc View commit details
    Browse the repository at this point in the history
  10. [docs] Update GitHub links in Mojo docs for 26.2 branch

    MODULAR_ORIG_COMMIT_REV_ID: 50037c3dd9735aaff343974c2f41c6d50a85f631
    scottamain authored and modularbot committed Mar 19, 2026
    Configuration menu
    Copy the full SHA
    c2ec4ef View commit details
    Browse the repository at this point in the history
  11. [cherrypick][docs] Batch of doc cherrypicks for 26.2

    MODULAR_ORIG_COMMIT_REV_ID: d4ca4708d7120e1b2db75917546b1821abc123b3
    scottamain authored and modularbot committed Mar 19, 2026
    Configuration menu
    Copy the full SHA
    f5e7ab2 View commit details
    Browse the repository at this point in the history
  12. [Docs] Update docs and examples for def/fn unification

    - Remove remaining `fn` keyword references from code examples and update
      function-type syntax (`fn()` → `def()`) in two files
    - Rewrite incorrect "def always implies raises" text in `functions.mdx`
    and
      remove unnecessary `raises` from 22 inline examples
    - Add `fn` deprecation caution admonition to `functions.mdx`
    - Update Game of Life tutorial: remove unnecessary `raises` from steps
    4–11,
    add explanatory text about when `raises` is needed, add links to
    Functions
      and Errors manual pages
    - Fix pre-existing issues: out-of-sync code snippets in `tensors.mdx`,
      broken links in `get-started.mdx` and `functions.mdx`
    - Delete unused `fn_vs_def_errors.mojo` example and consolidate
    redundant
      section in `errors.mdx`
    
    MODULAR_ORIG_COMMIT_REV_ID: 2ae8c4237096fdb89b24f78d5a51e68c81448ede
    Ahajha authored and modularbot committed Mar 19, 2026
    Configuration menu
    Copy the full SHA
    fdbf397 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    2a5c98b View commit details
    Browse the repository at this point in the history
Loading