merge queue: checking #2429 + #2430 + #2432 together on main (2afc3e0) - #2433
mergify[bot] wants to merge 8 commits into
Conversation
Assisted-by: Claude Code
Resolve conflict in godunov_homogeneous_bench_result.json by keeping both the newly added Apple M4 Max entry and upstream's newly added Intel Data Center GPU Max 1550 entry. Assisted-by: Claude Code
leaf_part_id in start_neighbors_cache_2stages() used a raw sycl::buffer while the rest of the neighbour cache build already used sham::DeviceBuffer with explicit read/write access and event-state completion. Switch it to the same pattern for consistency. Extracted from the sycl::buffer -> sham::DeviceBuffer migration in #2424 (commit bbca40c). Assisted-by: Claude Code
for more information, see https://pre-commit.ci
|
Important Review skippedBot user detected. To trigger a single review, invoke the ⚙️ Run configurationConfiguration used: Repository UI Review profile: ASSERTIVE Plan: Advanced Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Thanks @mergify[bot] for opening this PR! You can do multiple things directly here: Once the workflow completes a message will appear displaying informations related to the run. Also the PR gets automatically reviewed by gemini, you can: |
Workflow reportworkflow report corresponding to commit 2d9868e Pre-commit check reportPre-commit check: ✅ Test pipeline can run. Clang-tidy diff reportSuggested changesDetailed changes :diff --git a/src/shammodels/sph/src/modules/NeighbourCache.cpp b/src/shammodels/sph/src/modules/NeighbourCache.cpp
index 9f79d095..b710c447 100644
--- a/src/shammodels/sph/src/modules/NeighbourCache.cpp
+++ b/src/shammodels/sph/src/modules/NeighbourCache.cpp
@@ -549,7 +549,7 @@ void shammodels::sph::modules::NeighbourCache<Tvec, Tmorton, SPHKernel>::
u32 offset_leaf = intnode_cnt;
- constexpr Tscal Rker2 = Kernel::Rkern * Kernel::Rkern;
+ constexpr Tscal rker2 = Kernel::Rkern * Kernel::Rkern;
shambase::parallel_for(cgh, obj_cnt, "compute neigh cache 2", [=](u64 gid) {
u32 id_a = (u32) gid;
@@ -571,7 +571,7 @@ void shammodels::sph::modules::NeighbourCache<Tvec, Tmorton, SPHKernel>::
Tscal rint_b = hpart[id_b] * h_tolerance;
bool no_interact
- = rab2 > rint_a * rint_a * Rker2 && rab2 > rint_b * rint_b * Rker2;
+ = rab2 > rint_a * rint_a * rker2 && rab2 > rint_b * rint_b * rker2;
if (!no_interact) {
neigh[cnt] = id_b;Detailed changes : |
🎉 This combination of pull requests has been checked successfully and will be merged soon. 🎉
#2429 + #2430 + #2432 are queued together for merge on branch main (2afc3e0).
This pull request has been created by Mergify to check the mergeability of [#2429 + #2430 + #2432].
You don't need to do anything. Mergify will close this pull request automatically when it is complete.
Required conditions of queue rule
main queuefor merge:check-success = allRequired conditions to stay in the queue:
approved-reviews-by >= 1check-success = all_lightcheck-success = pre-commit.ci - pr