-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
profiling: update ffi build script to cross compile 32 bit on 64 bit linux #866
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #866 +/- ##
==========================================
- Coverage 71.91% 71.90% -0.02%
==========================================
Files 324 324
Lines 48044 48048 +4
==========================================
- Hits 34549 34547 -2
- Misses 13495 13501 +6
|
BenchmarksComparisonBenchmark execution time: 2025-03-11 19:30:14 Comparing candidate commit dab9ab7 in PR branch Found 0 performance improvements and 0 performance regressions! Performance is the same for 52 metrics, 2 unstable metrics. CandidateCandidate benchmark detailsGroup 1
Group 2
Group 3
Group 4
Group 5
Group 6
Group 7
Group 8
Group 9
Group 10
Group 11
Group 12
Group 13
BaselineOmitted due to size. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Arguably this could go in as-is, and we could fix the sharp edges separately, up to you :D
while getopts f:hT flag | ||
while getopts f:ht:T flag | ||
do | ||
case "${flag}" in | ||
f) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two notes here:
-
I think we're misusing the shift -- it actually breaks if we try to pass more than one setting now; e.g.
-f foo -t triplet
or-T -t triplet
. My bash-foo isn't great but this suggests how we may fix it. I think it has "worked" until now since nobody tried to use-f
with-T
, but it seems reasonable to want to combine-f
and-t
for instance? -
As a script UX thing, consider using something other than
-t
for the triplet, to avoid the collision with the test. Maybe-a
(arch?) or-c
(cpu) or something like that? Alternatively, rename the-T
to something else, I think that works too :)
What does this PR do?
A brief description of the change being made with this pull request.
Motivation
What inspired you to submit this pull request?
Additional Notes
Anything else we should know when reviewing?
How to test the change?
Describe here in detail how the change can be validated.