[llvm-branch-commits] [flang] [flang][openmp] Add Lowering to omp mlir for workdistribute construct (PR #154378)

2025-08-24 Thread via llvm-branch-commits
https://github.com/skc7 updated https://github.com/llvm/llvm-project/pull/154378 >From dd912bf6cf71f5e5cba972f181a4cbec4f8406a6 Mon Sep 17 00:00:00 2001 From: skc7 Date: Tue, 19 Aug 2025 21:46:13 +0530 Subject: [PATCH] [flang][openmp] Add Lowering to omp mlir for workdistribute construct ---

[llvm-branch-commits] [flang] [flang][openmp] Add parser/semantic support for workdistribute (PR #154377)

2025-08-24 Thread via llvm-branch-commits
@@ -4497,6 +4572,25 @@ void OmpStructureChecker::CheckWorkshareBlockStmts( } } +void OmpStructureChecker::CheckWorkdistributeBlockStmts( +const parser::Block &block, parser::CharBlock source) { + unsigned version{context_.langOptions().OpenMPVersion}; + if (version < 6

[llvm-branch-commits] [flang] [flang][openmp] Add parser/semantic support for workdistribute (PR #154377)

2025-08-24 Thread via llvm-branch-commits
https://github.com/skc7 updated https://github.com/llvm/llvm-project/pull/154377 >From 4442fced8216bf8e26522e2b4b127e4cfc40 Mon Sep 17 00:00:00 2001 From: skc7 Date: Tue, 19 Aug 2025 21:43:06 +0530 Subject: [PATCH 1/4] [flang][openmp] Add parser/semantic support for workdistribute --- ...

[llvm-branch-commits] [libcxx] release/21.x: [libc++] Add tests for the ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154559) (PR #154945)

2025-08-24 Thread Nikolas Klauser via llvm-branch-commits
https://github.com/philnik777 approved this pull request. This is as green as it gets currently. https://github.com/llvm/llvm-project/pull/154945 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mai

[llvm-branch-commits] [libcxx] release/21.x: [libc++] Add tests for the ABI break introduced by switching to _LIBCPP_COMPRESSED_PAIR (#154559) (PR #154945)

2025-08-24 Thread via llvm-branch-commits
h-vetinari wrote: @philnik777 @ldionne AFAIU this needs to be brought to green and approved ASAP to not miss the release. https://github.com/llvm/llvm-project/pull/154945 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://

[llvm-branch-commits] [llvm] [AMDGPU] Extending wave reduction intrinsics for `i64` types - 2 (PR #151309)

2025-08-24 Thread via llvm-branch-commits
easyonaadit wrote: Ping. https://github.com/llvm/llvm-project/pull/151309 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [clang] [llvm] [OpenMP] Add codegen support for dyn_groupprivate clause (PR #152830)

2025-08-24 Thread Kevin Sala Penades via llvm-branch-commits
https://github.com/kevinsala updated https://github.com/llvm/llvm-project/pull/152830 >From f66e5faa93cf2f40bd2a6bd7a95abddf78fb6076 Mon Sep 17 00:00:00 2001 From: Kevin Sala Date: Fri, 8 Aug 2025 11:04:06 -0700 Subject: [PATCH] [OpenMP] Add codegen support for dyn_groupprivate clause --- cla

[llvm-branch-commits] [clang] [clang] NFC: Provide inline definitions for {get, cast}TagDecl and friends (PR #155051)

2025-08-24 Thread Matheus Izvekov via llvm-branch-commits
https://github.com/mizvekov updated https://github.com/llvm/llvm-project/pull/155051 >From 199662ed8e15b74d74a9591fc0c5ea70e9541255 Mon Sep 17 00:00:00 2001 From: Matheus Izvekov Date: Fri, 22 Aug 2025 15:16:27 -0300 Subject: [PATCH] [clang] NFC: Provide inline definitions for {get,cast}TagDecl

[llvm-branch-commits] [clang] [clang] NFC: Provide inline definitions for {get, cast}TagDecl and friends (PR #155051)

2025-08-24 Thread Matheus Izvekov via llvm-branch-commits
https://github.com/mizvekov updated https://github.com/llvm/llvm-project/pull/155051 >From 199662ed8e15b74d74a9591fc0c5ea70e9541255 Mon Sep 17 00:00:00 2001 From: Matheus Izvekov Date: Fri, 22 Aug 2025 15:16:27 -0300 Subject: [PATCH] [clang] NFC: Provide inline definitions for {get,cast}TagDecl

[llvm-branch-commits] [libc] [libc][math][c++23] Add {modf, remainder, remquo}bf16 math functions (PR #154652)

2025-08-24 Thread Krishna Pandey via llvm-branch-commits
https://github.com/krishna2803 updated https://github.com/llvm/llvm-project/pull/154652 >From fc5e2152b4c57238ed424138ca27de1635146ef5 Mon Sep 17 00:00:00 2001 From: Krishna Pandey Date: Wed, 20 Aug 2025 03:43:58 +0530 Subject: [PATCH 1/6] feat: implement {modf,remainder,remquo}bf16 math funct

[llvm-branch-commits] [libc] [libc][math][c++23] Add {modf, remainder, remquo}bf16 math functions (PR #154652)

2025-08-24 Thread via llvm-branch-commits
@@ -2280,6 +2280,21 @@ add_entrypoint_object( libc.src.__support.FPUtil.manipulation_functions ) +add_entrypoint_object( + modfbf16 + SRCS +modfbf16.cpp + HDRS +../modfbf16.h + DEPENDS +libc.src.__support.common +libc.src.__support.FPUtil.bfloat16 +

[llvm-branch-commits] [libc] [libc][math][c++23] Add {modf, remainder, remquo}bf16 math functions (PR #154652)

2025-08-24 Thread via llvm-branch-commits
@@ -3184,6 +3199,21 @@ add_entrypoint_object( libc.src.__support.FPUtil.division_and_remainder_operations ) +add_entrypoint_object( + remquobf16 + SRCS +remquobf16.cpp + HDRS +../remquobf16.h + DEPENDS +libc.src.__support.common +libc.src.__support.FPUt

[llvm-branch-commits] [libc] [libc][math][c++23] Add {modf, remainder, remquo}bf16 math functions (PR #154652)

2025-08-24 Thread via llvm-branch-commits
@@ -300,6 +300,7 @@ add_math_entrypoint_object(fmodf) add_math_entrypoint_object(fmodl) add_math_entrypoint_object(fmodf16) add_math_entrypoint_object(fmodf128) +add_math_entrypoint_object(fmodbf16) overmighty wrote: ```suggestion ``` https://github.com/llvm/

[llvm-branch-commits] [libc] [libc][math][c++23] Add {modf, remainder, remquo}bf16 math functions (PR #154652)

2025-08-24 Thread via llvm-branch-commits
https://github.com/overmighty requested changes to this pull request. https://github.com/llvm/llvm-project/pull/154652 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-c