LLVM/project 047ea07llvm/test/CodeGen/AMDGPU int_to_fp_narrow_i64.ll

Fix lit test failure
DeltaFile
+208-709llvm/test/CodeGen/AMDGPU/int_to_fp_narrow_i64.ll
+208-7091 files

LLVM/project 0370a37llvm/lib/Target/AMDGPU GCNSubtarget.h

Apply batched suggestions from code review

Co-authored-by: Chinmay Deshpande <chdeshpa at amd.com>
DeltaFile
+1-3llvm/lib/Target/AMDGPU/GCNSubtarget.h
+1-31 files

FreeBSD/ports 375abc5lang/babashka Makefile distinfo

lang/babashka: Update to 1.13.222

Changes since 1.13.220:

1.13.222 (2026-09-14)

Read the release blog post:
https://blog.michielborkent.nl/babashka-1.13.222.html

  * Fix No :mvn/version specified when resolving dependencies on Jetty
    ee9 and ee10 caused by cached POMs sharing dependency management
    across versions
  * bb nrepl-server writes .nrepl-port on start and removes it on
    exit, so bb repl --connect finds the server without an address
  * Bump org.babashka/cli to 0.12.91

1.13.221 (2026-09-14)

  * Resolve dependencies without a JVM by default. Set :deps-resolver

    [74 lines not shown]
DeltaFile
+5-5lang/babashka/distinfo
+1-1lang/babashka/Makefile
+6-62 files

FreeBSD/ports 372fe06www/py-httpx2 Makefile

www/py-httpx2: fix devel/py-backports.zstd dependency for Python 3.14 and above

PR:             298407
Reported by:    yds <yds at Necessitu.de>
DeltaFile
+10-1www/py-httpx2/Makefile
+10-11 files

LLVM/project d220ed9llvm/lib/Target/AMDGPU GCNSubtarget.h, llvm/lib/Target/AMDGPU/Utils AMDGPUBaseInfo.cpp

[AMDGPU] Fix LDS reporting for targets without CU mode

Change-Id: Ib3d3061b153e391c841bdd9ae34080af1d965a1b
DeltaFile
+5-0llvm/test/CodeGen/AMDGPU/lds-limit-diagnostics.ll
+3-1llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
+1-1llvm/lib/Target/AMDGPU/GCNSubtarget.h
+9-23 files

LLVM/project 34f4421llvm/lib/CodeGen/SelectionDAG DAGCombiner.cpp

Update
DeltaFile
+1-1llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+1-11 files

LLVM/project 9a7179ellvm/test/CodeGen/AArch64 fold-int-pow2-with-fmul-or-fdiv.ll

Fix lit test
DeltaFile
+1-1llvm/test/CodeGen/AArch64/fold-int-pow2-with-fmul-or-fdiv.ll
+1-11 files

LLVM/project 3e8503allvm/lib/CodeGen/SelectionDAG DAGCombiner.cpp, llvm/lib/Target/AMDGPU AMDGPUISelLowering.h AMDGPUISelLowering.cpp

[DAGCombiner] Fold (uint_to_fp x) -> (uint_to_fp (trunc x))
DeltaFile
+1-27llvm/test/CodeGen/AMDGPU/fold-int-pow2-with-fmul-or-fdiv.ll
+22-0llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+9-11llvm/test/CodeGen/AMDGPU/cvt_f32_ubyte.ll
+0-18llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
+4-4llvm/test/CodeGen/X86/fold-int-pow2-with-fmul-or-fdiv.ll
+0-1llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
+36-616 files

LLVM/project 401452fllvm/lib/Target/AMDGPU AMDGPUISelLowering.h AMDGPUISelLowering.cpp, llvm/test/CodeGen/AMDGPU cvt_f32_ubyte.ll

[AMDGPU] Optimize i64 uitofp for unsigned byte values

Use v_cvt_f32_ubyte0 when the i64 source is known to fit in an unsigned
byte.
For example:

  uitofp (and i64 %x, 255) to float

This avoids the generic i64 to f32 expansion.
DeltaFile
+305-0llvm/test/CodeGen/AMDGPU/cvt_f32_ubyte.ll
+18-0llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
+1-0llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
+324-03 files

LLVM/project fcb9b75mlir/lib/Dialect/Tosa/Transforms TosaProfileCompliance.cpp

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+10-1mlir/lib/Dialect/Tosa/Transforms/TosaProfileCompliance.cpp
+10-11 files

LLVM/project 61a8c98llvm/include/llvm/TargetParser AMDGPUTargetParser.h, llvm/lib/Target/AMDGPU AMDGPU.td

[AMDGPU] Fix maximum physical LDS reporting for gfx6 (#223185)

Reference:
https://docs.amd.com/api/khub/documents/VeItSxvoJNzy28rl~JwEAQ/content#page=77

> “The maximum LDS allocation size for a work-group is still 32 kB,
however each compute unit has a total of 64 kB of LDS.”

Reference:
https://docs.amd.com/api/khub/documents/J4foK5jvufN9rTHf_DlCPw/content#page=22

> “Each compute unit has a 64 kB of Local Data Share (LDS) memory
space…”
> “Each workgroup can allocate up to 32 kB of this space, and can read
and write any portion of the LDS space allocated to it.”
DeltaFile
+28-7llvm/unittests/TargetParser/TargetParserTest.cpp
+10-10llvm/test/CodeGen/AMDGPU/default-flat-work-group-size-overrides-waves-per-eu.ll
+7-7llvm/test/CodeGen/AMDGPU/occupancy-levels.ll
+5-4llvm/lib/Target/AMDGPU/AMDGPU.td
+4-3llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
+3-2llvm/include/llvm/TargetParser/AMDGPUTargetParser.h
+57-331 files not shown
+58-347 files

LLVM/project 9a75253mlir/lib/Dialect/Tosa/Transforms TosaProfileCompliance.cpp

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+10-1mlir/lib/Dialect/Tosa/Transforms/TosaProfileCompliance.cpp
+10-11 files

LLVM/project 614fff6clang/test/Driver modules-driver-depscan-log.cpp

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+1-1clang/test/Driver/modules-driver-depscan-log.cpp
+1-11 files

LLVM/project c06e849clang/test/Driver modules-driver-depscan-log.cpp

stack

Created using spr 1.3.7
DeltaFile
+1-1clang/test/Driver/modules-driver-depscan-log.cpp
+1-11 files

LLVM/project 2394ed5clang/test/Driver modules-driver-depscan-log.cpp

stack

Created using spr 1.3.7
DeltaFile
+1-1clang/test/Driver/modules-driver-depscan-log.cpp
+1-11 files

LLVM/project 13f1284clang/test/Driver modules-driver-depscan-log.cpp

rebase

Created using spr 1.3.7
DeltaFile
+1-1clang/test/Driver/modules-driver-depscan-log.cpp
+1-11 files

LLVM/project ab2d400clang/test/Driver modules-driver-depscan-log.cpp

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+1-1clang/test/Driver/modules-driver-depscan-log.cpp
+1-11 files

LLVM/project 28f371cclang/test/Driver modules-driver-depscan-log.cpp

rebase

Created using spr 1.3.7
DeltaFile
+1-1clang/test/Driver/modules-driver-depscan-log.cpp
+1-11 files

FreeBSD/ports 1ed865cmath/py-ml-dtypes Makefile

math/py-ml-dtypes: Unbreak build by adding missing USES=cmake:indirect

Approved by:    portmgr (blanket; unbreak)
Reported by:    fallout, local build failures
DeltaFile
+1-1math/py-ml-dtypes/Makefile
+1-11 files

FreeBSD/ports becfb64science/py-scipy-stubs distinfo Makefile, science/py-scipy-stubs/files patch-pyproject.toml

science/py-scipy-stubs: update 1.18.0.1 → 1.18.1.0
DeltaFile
+5-4science/py-scipy-stubs/files/patch-pyproject.toml
+4-3science/py-scipy-stubs/Makefile
+3-3science/py-scipy-stubs/distinfo
+12-103 files

FreeBSD/ports 43e0879textproc/py-citeproc-py distinfo Makefile, textproc/py-citeproc-py/files patch-pyproject.toml

textproc/py-citeproc-py: update 0.10.3 → 0.11.1
DeltaFile
+24-0textproc/py-citeproc-py/files/patch-pyproject.toml
+7-3textproc/py-citeproc-py/Makefile
+3-3textproc/py-citeproc-py/distinfo
+34-63 files

FreeBSD/ports bdc13f9cad/py-amaranth distinfo Makefile

cad/py-amaranth: update 0.5.9 → 0.5.10
DeltaFile
+3-3cad/py-amaranth/distinfo
+3-3cad/py-amaranth/Makefile
+6-62 files

FreeBSD/ports a48807bfinance/py-ccxt distinfo Makefile, finance/py-ccxt/files patch-pyproject.toml

finance/py-ccxt: update 4.5.70 → 4.5.78
DeltaFile
+29-11finance/py-ccxt/Makefile
+18-12finance/py-ccxt/files/patch-pyproject.toml
+3-3finance/py-ccxt/distinfo
+50-263 files

FreeBSD/ports b679b28www/py-botocore-stubs Makefile distinfo

www/py-botocore-stubs: update 1.43.14 → 1.43.67
DeltaFile
+3-3www/py-botocore-stubs/distinfo
+2-3www/py-botocore-stubs/Makefile
+5-62 files

FreeBSD/ports a63b398sysutils/py-datalad Makefile distinfo

sysutils/py-datalad: update 1.6.1 → 1.6.2
DeltaFile
+3-3sysutils/py-datalad/distinfo
+3-2sysutils/py-datalad/Makefile
+6-52 files

FreeBSD/ports 0c8888amisc/py-histoprint Makefile distinfo

misc/py-histoprint: update 2.7.0 → 2.7.1
DeltaFile
+3-3misc/py-histoprint/distinfo
+2-2misc/py-histoprint/Makefile
+5-52 files

FreeBSD/ports f607d3dwww/py-boto3-stubs Makefile distinfo, www/py-boto3-stubs/files patch-pyproject.toml

www/py-boto3-stubs: update 1.43.93 → 1.43.94
DeltaFile
+4-4www/py-boto3-stubs/files/patch-pyproject.toml
+3-3www/py-boto3-stubs/distinfo
+1-1www/py-boto3-stubs/Makefile
+8-83 files

FreeBSD/ports 02e1549science/py-qcengine distinfo Makefile, science/py-qcengine/files patch-pyproject.toml

science/py-qcengine: update 0.50.0 → 0.51.0
DeltaFile
+10-2science/py-qcengine/Makefile
+3-3science/py-qcengine/distinfo
+2-2science/py-qcengine/files/patch-pyproject.toml
+15-73 files

FreeBSD/ports a347f71misc/py-npe2 Makefile distinfo

misc/py-npe2: update 0.8.3 → 0.9.0
DeltaFile
+3-3misc/py-npe2/distinfo
+1-1misc/py-npe2/Makefile
+4-42 files

FreeBSD/ports 83f2b7bmisc/ezc3d Makefile distinfo, misc/py-ezc3d distinfo Makefile

misc/{,py-}ezc3d: update 1.6.3 → 1.7.2
DeltaFile
+32-0misc/py-ezc3d/files/patch-CMakeLists.txt
+8-5misc/py-ezc3d/Makefile
+9-3misc/py-ezc3d/files/patch-pyproject.toml
+3-3misc/py-ezc3d/distinfo
+3-3misc/ezc3d/distinfo
+2-3misc/ezc3d/Makefile
+57-176 files