feat(integration-tests): port layernorm and rmsnorm-backward to bundle sweeps#9976
Draft
bghimireamd wants to merge 1 commit into
Conversation
✅ All Checks Passed — Ready for Review
📖 Need help? See the Policy FAQ for details on every check and how to fix failures. |
|
🎉 All checks passed! This PR is ready for review. |
…s to bundle sweeps Port C++ integration tests added by PR #9255 (mlops engine) to compressed template+sweep bundle format: - Layernorm: 708 cases split by tier — quick/Layernorm/{Default,Variant2}: 228 (Smoke4d/Smoke5d) full/Layernorm/{Default,Variant2}: 480 (Full4d/Full5d/Full5dLargeBatch) - RMSNormBackward: 960 cases (600 quick + 360 full) Default topology = training mode (mean+inv_variance outputs); Variant2 = inference mode (Pure precisions only, since Mixed/Upcast inference cases GTEST_SKIP in the C++ suite). Tier placement (quick/ vs full/) follows the C++ INSTANTIATE_TEST_SUITE_P prefix (Smoke* -> quick, Full* -> full) so bundle tiers match the source suite's tier gating. Each case captured via --capture-bundles and placed with place_bundles.py, preserving exact graph topology and per-case tensor shapes/dtypes/seeds. Refs: ALMIOPEN-2344 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
bghimireamd
force-pushed
the
users/bghimire/ALMIOPEN-2344/revisit_C_plus_plus_integration
branch
from
July 24, 2026 23:32
5e9661c to
b7b731c
Compare
5 tasks
bghimireamd
changed the base branch from
develop
to
users/bghimire/ALMIOPEN-2281/port_matmul_bundle
July 25, 2026 17:11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Port C++ integration tests from PR #9255 (mlops engine additions) to compressed template+sweep bundle format, part of the ALMIOPEN-2344 audit ("revisit all C++ integration tests, no duplication").
Layernorm — 708 cases, split by tier to match the C++
INSTANTIATE_TEST_SUITE_Pprefixes:quick/Layernorm/{Default,Variant2}— 228 cases (Smoke4d/Smoke5d)full/Layernorm/{Default,Variant2}— 480 cases (Full4d/Full5d/Full5dLargeBatch)RMSNormBackward — 960 cases:
quick/RMSNormBackward/Default— 600 (Smoke)full/RMSNormBackward/Default— 360 (Full)Topology variants
GTEST_SKIPin the C++ suite (CPU reference doesn't support mixed-precision inference), so they are correctly absent.Tier placement
place_bundles.pygroups by graph structure only, so Full-tier cases initially landed underquick/. Cases are re-split by theirreference_sourceprefix (Smoke*->quick/,Full*->full/) so bundle tier gating matches the source suite — heavy batch-256/512 volumetric shapes stay out of the quick tier.Captured via
--capture-bundles, placed withplace_bundles.py, preserving exact graph topology and per-case tensor shapes/dtypes/seeds.Refs: ALMIOPEN-2344
Test plan
--allow-bundlesGenerated with Claude Code