Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
mcpp/.gitmodules at example/graphics-stack · mcpp-community/mcpp · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
mcpp-community
/
mcpp
Public
Notifications
You must be signed in to change notification settings
Fork
13
Star
128
Code
Issues
31
Pull requests
3
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
example/graphics-stack
Breadcrumbs
mcpp
/
.gitmodules
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
59 lines (59 loc) · 3.13 KB
example/graphics-stack
Breadcrumbs
mcpp
/
.gitmodules
Copy path
Top
File metadata and controls
Code
Blame
59 lines (59 loc) · 3.13 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
The benchmark's measured WORKLOADS, all pinned.
#
#
A benchmark has two halves: the engine under test, and the workload it is
#
given. The engine is the binary and is SUPPOSED to move between runs. The
#
workload is not — and both of these were moving.
#
#
* xlings was `git clone --depth 1` of its default branch at run time, so the
#
target changed with every upstream push. `--hub src/xlings.cppm` had been
#
naming a file that no longer existed for months: every xlings cell reported
#
`skipped`, every xlings job reported success, and nobody had a reason to
#
look.
#
* mcpp's own sources were `--project $GITHUB_WORKSPACE`, i.e. the checkout,
#
so every commit on a branch silently changed the thing being measured. The
#
same defect, just harder to see because the drift was our own.
#
#
A submodule is a PIN, not a vendored snapshot: the commit is in the diff, it is
#
reviewed like any other change, `git submodule update --init` gives everyone
#
the tree CI measured, and `tests/e2e/233_bench_matrix.sh` can check that each
#
`hub`/`body` still exists in it. Bumping one is a deliberate act that
#
invalidates the previous ratios on purpose.
#
#
WHY TWO COPIES OF xlings. They are the two code styles being compared:
#
#
xlings-2026.8.11.2 (b1563fe) 110 .cppm + 2 .cpp — implementation lives
#
inside each interface unit
#
xlings-2026.8.13.1 (f072075) 110 .cppm + 92 .cpp — implementation split out
#
#
Same authors, same 46k lines, same module graph; the question is what the split
#
costs or saves on an incremental build. That is the `modules` vs `modules-impl`
#
axis the generated fixture has, on a real tree.
#
#
ONE description serves every pin of a project
#
(bench/projects/<name>/{CMakeLists.txt,xmake.lua}): they glob
#
`src/**/*.{cppm,cpp}`, which is the same rule mcpp itself infers from, so no
#
style needs its own file, an environment switch, or a branch.
#
#
`ignore = dirty` on every one of them: a measurement RUNS these trees, and the
#
engines write into them — `mcpp build` writes `mcpp.lock`, cmake and xmake put
#
objects under `build/`. Those are the engines doing their job, and they made
#
`git status` in this repository report two modified submodules after every
#
bench run. The only state that matters here is WHICH COMMIT each workload is
#
pinned to, and that is still reported: `ignore = dirty` hides working-tree
#
changes, never a moved gitlink.
#
#
The source files themselves are restored by the harness (`SourceGuard`), so a
#
leftover perturbation is already a bug rather than something to ignore — and
#
`git submodule foreach git status` still shows one when it happens.
[
submodule
"
bench/projects/xlings/xlings-2026.8.11.2
"]
path
=
bench/projects/xlings/xlings-2026.8.11.2
url
=
https://github.com/openxlings/xlings
ignore
=
dirty
[
submodule
"
bench/projects/xlings/xlings-2026.8.13.1
"]
path
=
bench/projects/xlings/xlings-2026.8.13.1
url
=
https://github.com/openxlings/xlings
ignore
=
dirty
[
submodule
"
bench/projects/mcpp/mcpp-2026.8.11.3
"]
path
=
bench/projects/mcpp/mcpp-2026.8.11.3
url
=
https://github.com/mcpp-community/mcpp
ignore
=
dirty
You can’t perform that action at this time.