Skip to content

perf: move report brick road statuses to a derived value #60827

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

Conversation

TMisiukiewicz
Copy link
Contributor

@TMisiukiewicz TMisiukiewicz commented Apr 24, 2025

Explanation of Change

Fixed Issues

$ #59350
PROPOSAL:

Tests

Test case 1:

  1. Open the app
  2. Verify that your GBR statuses are displayed in LHN
  3. Open any chat that does not have a GBR
  4. Create task and assign it to yourself
  5. Verify the GBR appeared in LHN

Test case 2:

  1. Open the app
  2. Verify that your RBR statuses are displayed in LHN
  3. Open any chat that does not have RBR status
  4. Split expense and upload an image that is not a correct receipt so the scan will fail
  5. Verify the RBR appeared in LHN
  6. On staging, find a report which does not have RBR displayed immediately, but it is displayed after opening the report and loading report action with RBR from OpenReport
  7. Open the same report on dev
  8. Verify RBR appeared in the LHN
  • Verify that no errors appear in the JS console

Offline tests

n/a

QA Steps

// TODO: These must be filled out, or the issue title must include "[No QA]."
Same as tests

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I verified the translation was requested/reviewed in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • I added unit tests for any new feature or bug fix in this PR to help automatically prevent regressions in this user flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
ios.mp4
iOS: mWeb Safari
ios.web.mp4
MacOS: Chrome / Safari
web.mov
MacOS: Desktop
desktop.mov

Comment on lines 10472 to 10502
function generateReportAttributes({
report,
reportActions,
transactionViolations,
}: {
report: OnyxEntry<Report>;
reportActions?: ReportActions;
transactionViolations: OnyxCollection<TransactionViolation[]>;
}) {
const isReportSettled = isSettled(report);
const isCurrentUserReportOwner = isReportOwner(report);
const doesReportHasViolations = hasReportViolations(report?.reportID);
const hasViolationsToDisplayInLHN = shouldDisplayViolationsRBRInLHN(report, transactionViolations);
const hasAnyViolations = hasViolationsToDisplayInLHN || (!isReportSettled && isCurrentUserReportOwner && doesReportHasViolations);
const reportErrors = getAllReportErrors(report, reportActions);
const hasErrors = Object.entries(reportErrors ?? {}).length > 0;
const oneTransactionThreadReportID = getOneTransactionThreadReportID(report?.reportID, reportActions);
const parentReportAction = report?.parentReportActionID ? reportActions?.[report.parentReportActionID] : undefined;
const requiresAttention = requiresAttentionFromCurrentUser(report, parentReportAction);

return {
doesReportHasViolations,
hasViolationsToDisplayInLHN,
hasAnyViolations,
reportErrors,
hasErrors,
oneTransactionThreadReportID,
parentReportAction,
requiresAttention,
};
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I created this function to:

  1. Keep reportAttributes.ts as clean as possible
  2. Those values can be later exposed by a derived value and it'll be possible to use them instead of calling those functions multiple times

@TMisiukiewicz TMisiukiewicz force-pushed the perf/brick-road-status-derived-value branch from ca6de99 to de7c06c Compare April 30, 2025 08:27
@TMisiukiewicz
Copy link
Contributor Author

@hoangzinh @mjasikowski CI should be good now, unit tests are passing now

Copy link
Contributor

@mjasikowski mjasikowski left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@melvin-bot melvin-bot bot requested a review from mjasikowski May 7, 2025 02:34
@mjasikowski mjasikowski merged commit fbe28a3 into Expensify:main May 7, 2025
17 of 18 checks passed
@OSBotify
Copy link
Contributor

OSBotify commented May 7, 2025

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@github-actions github-actions bot added the DeployBlockerCash This issue or pull request should block deployment label May 7, 2025
Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (1/14)

⚠️ Some tests did not pass successfully, so some results are omitted from final report: Linking

Significant Changes To Duration

Name Duration
App start time contentAppeared_To_screenTTI 1025.888 ms → 1173.374 ms (+147.487 ms, +14.4%) 🔴
App start time TTI 1718.088 ms → 1861.679 ms (+143.591 ms, +8.4%) 🔴
Show details
Name Duration
App start time contentAppeared_To_screenTTI Baseline
Mean: 1025.888 ms
Stdev: 234.296 ms (22.8%)
Runs: 585.8715019999072 625.7725989995524 628.3058770000935 636.5382479997352 639.0354230003431 639.1957139996812 642.8717620000243 651.6143420003355 658.5741419997066 661.5354909999296 670.6556409997866 684.5924190003425 684.8922420004383 687.2852919995785 689.00308100041 689.6740039996803 699.9244929999113 1053.2089080000296 1098.7370689995587 1100.7568439999595 1101.6067369999364 1127.9519429998472 1136.446716000326 1141.3301799995825 1148.591215999797 1149.919453999959 1150.6974099995568 1154.2313710004091 1156.0579359997064 1156.9126700004563 1157.790806000121 1160.755032000132 1161.0448559997603 1163.3013920001686 1165.75077100005 1165.8232330000028 1173.5768750002608 1176.1195759996772 1178.914474000223 1180.79533000011 1181.8146839998662 1183.613625000231 1186.6077560000122 1187.1600670004264 1187.702782000415 1189.201914999634 1192.9269740004092 1193.6812370000407 1194.8241710001603 1195.4727400001138 1198.5188349997625 1202.1282949997112 1202.1466659996659 1202.6914590001106 1210.124618000351 1214.3756470000371 1216.742162999697 1218.3587899999693 1221.2034750003368 1238.306483999826

Current
Mean: 1173.374 ms
Stdev: 49.783 ms (4.2%)
Runs: 1014.9229269996285 1037.7937869997695 1083.3830629996955 1111.3993450002745 1111.9050850002095 1125.7123830001801 1126.7121050003916 1126.9332870002836 1143.610480999574 1148.218526000157 1148.9546360000968 1151.6778729995713 1153.4175950000063 1155.0915090003982 1155.1602419996634 1157.1841829996556 1158.1741840001196 1162.5659400001168 1163.99855200015 1170.2314440002665 1174.0010179998353 1174.470947000198 1180.4291669996455 1183.4826579997316 1185.7849409999326 1188.9935039998963 1190.7213800000027 1191.9598420001566 1193.5958759998903 1195.8438839996234 1197.2366079995409 1197.3569200001657 1199.4928440004587 1200.1168059995398 1200.2333810003474 1200.5406160000712 1209.4227919997647 1216.5142919998616 1220.663990999572 1221.6027809996158 1224.9797080000862 1225.8698220001534 1229.0157099999487 1238.1520429998636 1242.4325789995492 1285.262040999718
App start time TTI Baseline
Mean: 1718.088 ms
Stdev: 242.735 ms (14.1%)
Runs: 1284.8715019999072 1286.0354230003431 1288.7725989995524 1299.3058770000935 1304.8717620000243 1310.6143420003355 1311.2852919995785 1335.1957139996812 1343.5924190003425 1348.6556409997866 1351.5382479997352 1363.5354909999296 1381.00308100041 1383.9244929999113 1387.6740039996803 1390.8922420004383 1404.5741419997066 1732.2089080000296 1736.7568439999595 1795.9519429998472 1798.6974099995568 1810.446716000326 1816.0579359997064 1823.613625000231 1824.1195759996772 1828.79533000011 1830.7370689995587 1834.3301799995825 1834.6067369999364 1836.9269740004092 1847.9126700004563 1855.5188349997625 1855.8232330000028 1861.790806000121 1862.6914590001106 1863.591215999797 1864.201914999634 1866.755032000132 1866.919453999959 1867.1600670004264 1868.75077100005 1871.702782000415 1878.2313710004091 1882.5768750002608 1883.3013920001686 1894.1466659996659 1896.4727400001138 1899.8146839998662 1900.0448559997603 1905.1282949997112 1909.3756470000371 1909.8241710001603 1910.124618000351 1911.6812370000407 1918.6077560000122 1921.2034750003368 1933.914474000223 1962.306483999826 1962.742162999697 1973.3587899999693

Current
Mean: 1861.679 ms
Stdev: 61.494 ms (3.3%)
Runs: 1695.3830629996955 1700.7937869997695 1748.7123830001801 1760.3993450002745 1770.9050850002095 1809.7121050003916 1816.6778729995713 1825.4826579997316 1827.610480999574 1828.9935039998963 1831.9332870002836 1832.4928440004587 1837.2333810003474 1839.4175950000063 1843.470947000198 1847.4291669996455 1849.9229269996285 1853.5958759998903 1853.9598420001566 1854.9546360000968 1857.1741840001196 1859.663990999572 1860.6027809996158 1861.1168059995398 1865.8438839996234 1870.7849409999326 1873.0915090003982 1875.1841829996556 1880.2314440002665 1881.7213800000027 1887.0157099999487 1889.218526000157 1890.4227919997647 1890.5659400001168 1891.2366079995409 1897.5142919998616 1899.3569200001657 1903.8698220001534 1915.99855200015 1917.1520429998636 1917.1602419996634 1920.0010179998353 1937.5406160000712 1962.9797080000862 1995.4325789995492 2007.262040999718

Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (10/14)

Meaningless Changes To Duration (9/13)

Show entries
Name Duration
App start time nativeLaunch 23.446 ms → 24.390 ms (+0.943 ms, +4.0%)
App start time appCreation 69.534 ms → 71.683 ms (+2.149 ms, +3.1%)
App start time appCreationEnd_To_contentAppeared 516.217 ms → 508.186 ms (-8.030 ms, -1.6%)
App start time nativeLaunchEnd_To_appCreationStart 80.310 ms → 80.140 ms (-0.170 ms, ±0.0%)
App start time runJsBundle 320.271 ms → 321.400 ms (+1.129 ms, ±0.0%)
App start time regularAppStart 0.022 ms → 0.021 ms (-0.000 ms, -1.6%)
App start time (CPU) 144.741 % → 146.397 % (+1.656 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.392 MB → 384.278 MB (+0.886 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 24.458 % → 25.259 % (+0.801 %, +3.3%)
Open search router TTI Load Search Options 134.434 ms → 136.261 ms (+1.827 ms, +1.4%)
Open search router TTI Open Search Router TTI 1209.840 ms → 1243.862 ms (+34.022 ms, +2.8%)
Open search router TTI (CPU) 145.998 % → 146.484 % (+0.486 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 407.128 MB → 408.156 MB (+1.027 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.352 % → 25.203 % (-0.148 %, -0.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 488.881 ms → 489.055 ms (+0.174 ms, ±0.0%)
Report typing (CPU) 95.212 % → 95.335 % (+0.123 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 475.332 MB → 475.423 MB (+0.091 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.566 % → 20.463 % (-0.103 %, -0.5%)
Chat opening Chat TTI 717.497 ms → 727.543 ms (+10.046 ms, +1.4%)
Chat opening (CPU) 160.918 % → 160.617 % (-0.302 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 399.775 MB → 399.688 MB (-0.086 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.541 % → 32.297 % (-1.244 %, -3.7%)
Money request - Open Manual Tracking 141.061 ms → 135.632 ms (-5.429 ms, -3.8%)
Money request - Open Contacts 228.145 ms → 222.454 ms (-5.691 ms, -2.5%)
Money request - Open Create 141.602 ms → 138.018 ms (-3.584 ms, -2.5%)
Money request (CPU) 178.959 % → 178.599 % (-0.361 %, ±0.0%)
Money request (FPS) 59.317 FPS → 59.276 FPS (-0.041 FPS, ±0.0%)
Money request (RAM) 470.488 MB → 470.058 MB (-0.431 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.378 % → 44.595 % (+0.217 %, ±0.0%)
Show details
Name Duration
Report typing (CPU/UI) Baseline
Mean: 20.566 %
Stdev: 1.098 % (5.3%)
Runs: 18.4 18.9 19.1 19.2 19.2 19.3 19.4 19.5 19.5 19.6 19.6 19.6 19.7 19.8 19.9 19.9 19.9 19.9 20 20 20 20 20 20.1 20.1 20.1 20.1 20.1 20.1 20.2 20.2 20.3 20.4 20.4 20.5 20.5 20.6 20.6 20.6 20.8 21 21.1 21.1 21.3 21.5 21.6 21.7 21.7 22 22.2 22.2 22.2 22.3 22.3 22.4 22.5 22.5 22.6 23.1

Current
Mean: 20.463 %
Stdev: 1.051 % (5.1%)
Runs: 18.7 18.8 18.8 18.9 19.1 19.1 19.1 19.3 19.4 19.4 19.5 19.6 19.7 19.7 19.7 19.7 19.8 20 20.1 20.1 20.1 20.1 20.1 20.2 20.2 20.2 20.2 20.2 20.2 20.3 20.3 20.3 20.3 20.4 20.5 20.5 20.6 20.7 20.7 20.8 20.9 20.9 20.9 20.9 21 21.1 21.3 21.3 21.3 21.3 21.5 21.8 21.9 22 22 22.7 22.9 22.9 23.3
Chat opening Chat TTI Baseline
Mean: 717.497 ms
Stdev: 96.502 ms (13.4%)
Runs: 479.9174000006169 550.390625 562.5809729993343 568.2198079992086 570.9136549998075 575.0646969992667 579.1364339999855 584.144164999947 588.2196460012347 592.1529550012201 603.3446859996766 612.9611820001155 614.9468999989331 621.4723719991744 624.2511799987406 643.8771570008248 646.9481610003859 655.0359290000051 658.4447840005159 666.296916000545 667.1481120008975 668.1051439996809 682.2285569999367 686.3387860003859 698.9073079992086 708.0545249991119 722.2797040008008 724.3838299997151 725.0325520001352 738.6488039996475 742.4743250012398 746.0582689996809 747.344360999763 751.8449709992856 765.7466639988124 771.6824149992317 776.980956999585 779.2555749993771 788.2123210001737 792.2232259996235 793.2559409998357 793.6536459997296 799.6209730003029 800.5620530005544 801.188069999218 802.1101890001446 811.2676599994302 813.6934409998357 816.0288910008967 816.2913419995457 817.8692219983786 821.5463459994644 822.2141120005399 828.628581000492 829.1528730001301 829.6298830006272 833.5353190004826 840.1836350001395 846.4010420013219 851.7344560008496

Current
Mean: 727.543 ms
Stdev: 92.020 ms (12.6%)
Runs: 483.4824629984796 574.121418999508 577.2100830003619 578.2182220015675 586.1380610000342 595.9622399993241 598.566529000178 598.8147379998118 629.7871100008488 631.0269780009985 632.6864420007914 641.0689700003713 641.997355999425 643.8680830001831 647.4668780006468 647.8154709991068 651.7661129999906 654.1429439987987 673.0491129998118 675.2707110010087 680.0439459998161 704.3583179991692 709.2510989997536 711.0237629991025 712.648398000747 715.691203000024 716.3409020006657 716.5738940015435 720.0141599997878 720.4526380002499 720.6405840013176 726.4108490012586 733.2396649997681 754.4184170011431 754.9357500001788 764.9814860001206 782.391114000231 789.4954430013895 791.4591889996082 798.8849290013313 800.1293950006366 802.2315270006657 806.3923349995166 810.8704829998314 816.5700279995799 818.8200690001249 824.5590419992805 828.8773609995842 829.9748139996082 831.7296149991453 833.9392500016838 834.0388180017471 836.8848879989237 837.4981279987842 838.7564700003713 841.1363930013031 841.2172039989382 842.0905770007521 843.6001379992813 847.5405269991606
Chat opening (CPU) Baseline
Mean: 160.918 %
Stdev: 7.857 % (4.9%)
Runs: 143.86318753547192 147.30571731009033 147.50491402438905 148.30709998573835 150.9241879306504 152.44956365912034 152.64768948159465 152.85267742230494 153.01169451258747 153.3599942758957 153.59203746331386 153.61532820345315 153.69290843877496 153.8187260050404 154.16015244713105 155.02487616858315 155.11941843659875 156.13730439420104 156.46181428973333 156.6312156705248 156.75654051417345 156.9132268008363 157.2837139372597 157.57022761696985 157.63748436001075 157.92159891401494 158.63931339036526 158.84913122343806 159.21570760835533 159.88807389869152 160.68083819798417 160.99226262078022 162.04793130846113 162.0811258264189 162.35542832003256 163.23595173299256 163.60139787541408 163.7040144260398 164.3219394280533 165.83770658266096 166.07186861378668 166.23463192289816 166.32877798425844 166.62895241137014 166.83083882932996 168.19224930975264 168.26460966036592 168.42182453418243 169.48342945626575 169.80547691054363 169.93608675268146 170.0337592180408 171.09636895064548 171.32125661201036 172.2236075200088 174.61826767006048 174.76447105788426 176.27745461280057 177.6411956654908

Current
Mean: 160.617 %
Stdev: 5.475 % (3.4%)
Runs: 148.37052519181253 151.71309842944814 152.57781668377692 152.6039115487708 152.70628628072328 153.2843750298413 153.77251885150687 154.1013575798036 154.150555328851 154.36283491208448 154.64245670918407 155.57968951875813 155.5812668438784 156.3457036151987 156.8402095487051 156.94197911983846 157.19941604866028 157.22018126167742 157.30892160447746 158.3235871220563 158.37939740531195 158.4251982305041 158.8503129304151 158.85966319039963 158.91217564870263 158.9945928743706 158.9950536303444 159.02020968463535 159.16419070888446 159.94542777506578 160.00410478172674 160.6225982477316 161.3476471846213 161.3874480705761 161.59988927459128 162.02478553266323 162.81381198738322 163.55379485704125 163.65477720342042 163.8000211354249 163.94579179090803 164.23796307700218 164.2412246939825 164.25124140737069 164.35184176262172 164.6040251477109 164.80973172568343 165.0103516690527 165.79148512980277 166.3781372991052 168.07513576893717 168.63742987003425 168.66062454825402 168.75272901577463 168.87235044736858 169.47546592920952 170.32634502350064 170.38710776800596 171.6044914809216

Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (11/14)

Meaningless Changes To Duration (10/13)

Show entries
Name Duration
App start time nativeLaunch 23.446 ms → 24.390 ms (+0.943 ms, +4.0%)
App start time appCreation 69.534 ms → 71.683 ms (+2.149 ms, +3.1%)
App start time appCreationEnd_To_contentAppeared 516.217 ms → 508.186 ms (-8.030 ms, -1.6%)
App start time nativeLaunchEnd_To_appCreationStart 80.310 ms → 80.140 ms (-0.170 ms, ±0.0%)
App start time runJsBundle 320.271 ms → 321.400 ms (+1.129 ms, ±0.0%)
App start time regularAppStart 0.022 ms → 0.021 ms (-0.000 ms, -1.6%)
App start time (CPU) 144.741 % → 146.397 % (+1.656 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.392 MB → 384.278 MB (+0.886 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 24.458 % → 25.259 % (+0.801 %, +3.3%)
Open search router TTI Load Search Options 134.434 ms → 136.261 ms (+1.827 ms, +1.4%)
Open search router TTI Open Search Router TTI 1209.840 ms → 1243.862 ms (+34.022 ms, +2.8%)
Open search router TTI (CPU) 145.998 % → 146.484 % (+0.486 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 407.128 MB → 408.156 MB (+1.027 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.352 % → 25.203 % (-0.148 %, -0.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 488.881 ms → 489.055 ms (+0.174 ms, ±0.0%)
Report typing (CPU) 95.212 % → 95.335 % (+0.123 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 475.332 MB → 475.423 MB (+0.091 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.566 % → 20.463 % (-0.103 %, -0.5%)
Chat opening Chat TTI 717.497 ms → 727.543 ms (+10.046 ms, +1.4%)
Chat opening (CPU) 160.918 % → 160.617 % (-0.302 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 399.775 MB → 399.688 MB (-0.086 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.541 % → 32.297 % (-1.244 %, -3.7%)
Money request - Open Manual Tracking 141.061 ms → 135.632 ms (-5.429 ms, -3.8%)
Money request - Open Contacts 228.145 ms → 222.454 ms (-5.691 ms, -2.5%)
Money request - Open Create 141.602 ms → 138.018 ms (-3.584 ms, -2.5%)
Money request (CPU) 178.959 % → 178.599 % (-0.361 %, ±0.0%)
Money request (FPS) 59.317 FPS → 59.276 FPS (-0.041 FPS, ±0.0%)
Money request (RAM) 470.488 MB → 470.058 MB (-0.431 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.378 % → 44.595 % (+0.217 %, ±0.0%)
Show details
Name Duration
Chat opening (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Chat opening (RAM) Baseline
Mean: 399.775 MB
Stdev: 5.684 MB (1.4%)
Runs: 386.6002604166667 388.4231770833333 388.650390625 391.3525390625 391.365234375 391.7705078125 393.1806640625 393.2900390625 393.3193359375 393.4423828125 393.673828125 393.701171875 394.85546875 394.87265625 395.5234375 395.634765625 395.921875 396.8140625 397.287109375 397.296875 397.4013671875 397.86875 398.0205078125 398.14609375 398.46953125 398.958984375 399.185546875 399.6005859375 399.89765625 400.0830078125 400.12421875 401.072265625 401.095703125 401.3375 401.5171875 401.59609375 401.7529296875 401.76171875 401.923828125 402.01640625 402.16796875 402.7828125 402.99609375 403.35078125 403.4125 403.4853515625 403.81640625 403.86875 404.70859375 404.79140625 406.10625 406.2796875 406.5185546875 406.912109375 407.740234375 408.1533203125 408.185546875 410.11328125 410.1546875 412.123046875

Current
Mean: 399.688 MB
Stdev: 5.190 MB (1.3%)
Runs: 388.19921875 388.3662109375 388.509765625 390.4775390625 392.10703125 392.2578125 393.12890625 393.9130859375 394.7747395833333 394.7802734375 394.83203125 395.046875 395.40625 395.4833984375 395.5771484375 395.66484375 396.4140625 396.484375 396.52421875 397.3265625 397.58515625 397.6630859375 397.810546875 398.190625 398.2213541666667 398.359375 398.896875 399.3720703125 400.3 400.5078125 400.546875 401.01953125 401.07734375 401.3921875 401.44375 401.7080078125 401.91328125 402.0671875 402.1140625 402.153125 402.25546875 402.298828125 402.53828125 402.9875 403.29453125 403.330078125 403.621875 403.98828125 404.075 404.53671875 405.44296875 405.47109375 405.751953125 406.1734375 406.3140625 407.109375 407.64765625 408.4796875 408.78359375 409.58359375
Chat opening (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (12/14)

Meaningless Changes To Duration (11/13)

Show entries
Name Duration
App start time nativeLaunch 23.446 ms → 24.390 ms (+0.943 ms, +4.0%)
App start time appCreation 69.534 ms → 71.683 ms (+2.149 ms, +3.1%)
App start time appCreationEnd_To_contentAppeared 516.217 ms → 508.186 ms (-8.030 ms, -1.6%)
App start time nativeLaunchEnd_To_appCreationStart 80.310 ms → 80.140 ms (-0.170 ms, ±0.0%)
App start time runJsBundle 320.271 ms → 321.400 ms (+1.129 ms, ±0.0%)
App start time regularAppStart 0.022 ms → 0.021 ms (-0.000 ms, -1.6%)
App start time (CPU) 144.741 % → 146.397 % (+1.656 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.392 MB → 384.278 MB (+0.886 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 24.458 % → 25.259 % (+0.801 %, +3.3%)
Open search router TTI Load Search Options 134.434 ms → 136.261 ms (+1.827 ms, +1.4%)
Open search router TTI Open Search Router TTI 1209.840 ms → 1243.862 ms (+34.022 ms, +2.8%)
Open search router TTI (CPU) 145.998 % → 146.484 % (+0.486 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 407.128 MB → 408.156 MB (+1.027 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.352 % → 25.203 % (-0.148 %, -0.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 488.881 ms → 489.055 ms (+0.174 ms, ±0.0%)
Report typing (CPU) 95.212 % → 95.335 % (+0.123 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 475.332 MB → 475.423 MB (+0.091 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.566 % → 20.463 % (-0.103 %, -0.5%)
Chat opening Chat TTI 717.497 ms → 727.543 ms (+10.046 ms, +1.4%)
Chat opening (CPU) 160.918 % → 160.617 % (-0.302 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 399.775 MB → 399.688 MB (-0.086 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.541 % → 32.297 % (-1.244 %, -3.7%)
Money request - Open Manual Tracking 141.061 ms → 135.632 ms (-5.429 ms, -3.8%)
Money request - Open Contacts 228.145 ms → 222.454 ms (-5.691 ms, -2.5%)
Money request - Open Create 141.602 ms → 138.018 ms (-3.584 ms, -2.5%)
Money request (CPU) 178.959 % → 178.599 % (-0.361 %, ±0.0%)
Money request (FPS) 59.317 FPS → 59.276 FPS (-0.041 FPS, ±0.0%)
Money request (RAM) 470.488 MB → 470.058 MB (-0.431 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.378 % → 44.595 % (+0.217 %, ±0.0%)
Show details
Name Duration
Chat opening (CPU/UI) Baseline
Mean: 33.541 %
Stdev: 3.220 % (9.6%)
Runs: 27.2 28.1 28.4 29 29.3 29.5 29.6 29.7 29.9 30 30 30.6 30.9 31.1 31.7 31.9 32.1 32.2 32.2 32.3 32.3 32.4 32.4 32.4 32.4 32.5 32.6 32.7 32.8 32.8 33.1 33.2 33.3 33.4 33.6 33.8 34 34 34.2 34.5 34.7 34.8 35 36 36 36.1 36.9 37.2 37.3 37.3 37.3 37.7 37.9 37.9 38.2 39.1 39.5 40.5 41.4

Current
Mean: 32.297 %
Stdev: 2.323 % (7.2%)
Runs: 27.2 27.6 27.8 28.7 28.7 28.9 29.7 29.8 29.9 30.2 30.3 30.3 30.4 30.4 30.4 30.7 30.7 31.1 31.3 31.5 31.6 31.7 31.7 31.8 31.8 31.8 31.8 31.9 32 32 32.3 32.4 32.5 32.5 32.8 32.9 33.2 33.4 33.4 33.5 33.6 33.8 33.9 34 34 34 34 34.2 34.2 34.6 34.7 34.9 34.9 35.3 35.6 35.9 36.2 36.7 38.4
Money request - Open Manual Tracking Baseline
Mean: 141.061 ms
Stdev: 12.029 ms (8.5%)
Runs: 115.5489509999752 116.34427900053561 119.95760099962354 125.36722800135612 125.47481299936771 126.39668800123036 128.16373699903488 128.39412399940193 128.88740999996662 129.68204700015485 129.7092279996723 129.96850600093603 130.79817800037563 130.83361800014973 130.9618330001831 132.86323999986053 132.86568200029433 134.49776200018823 134.84289599955082 134.85160300135612 134.8517659995705 136.10461499914527 136.27551299892366 136.48913599923253 136.62825500033796 137.7286380007863 138.26961299963295 138.809325998649 139.10587600059807 140.0697429999709 140.31730199977756 140.60746300034225 141.52063000015914 142.73726399987936 142.98750799894333 143.66092900000513 144.6151119992137 145.3128669988364 146.1695959996432 146.87882499955595 147.05871599912643 148.10843900032341 150.1733400002122 150.69002299942076 150.98360200040042 151.48592099919915 151.9951990004629 152.43111199885607 153.24149599857628 154.69689999893308 154.98433399945498 155.2250159997493 156.4547530002892 156.52673400007188 157.92724699899554 158.02620499953628 159.8873700015247 162.35917099937797 174.81262299977243

Current
Mean: 135.632 ms
Stdev: 12.522 ms (9.2%)
Runs: 114.89432800002396 115.86324100010097 115.90291300043464 119.391072999686 120.8536380007863 121.30468800105155 121.56799299828708 122.45576999895275 122.47049899958074 122.94173200055957 123.54520599916577 123.80273399874568 124.18741900101304 124.35611999966204 124.49422200024128 125.25317399948835 126.71630899980664 126.73185200057924 127.83492099866271 128.42675800062716 128.60514300130308 128.62841800041497 129.0932209994644 129.72639899887145 130.28519699908793 130.7204590011388 130.9707440007478 131.36356600001454 132.19164999946952 132.7262779995799 133.07348699867725 133.48608399927616 134.13639399968088 135.74178100004792 136.644369000569 138.79475899972022 139.3295080009848 139.8607999999076 140.55147299915552 140.59383099898696 140.72440600022674 141.8504639994353 142.9040520004928 143.10632300004363 144.57832900062203 144.92399100027978 145.59777799993753 146.7838139999658 146.86120599880815 149.88476600125432 151.2537429984659 151.6322830002755 151.68310499936342 154.0860190000385 154.40458099916577 154.63525399938226 155.50358099862933 158.08870499953628 160.3780930005014 169.5142419990152
Money request - Open Contacts Baseline
Mean: 228.145 ms
Stdev: 14.650 ms (6.4%)
Runs: 199.80322300083935 205.01061999984086 205.01774099841714 208.86458300054073 208.9554859995842 210.28706900030375 210.49841399863362 211.5305989999324 214.6419680006802 215.42744999937713 216.00594000145793 216.04284599982202 216.1829430013895 216.70947300083935 216.84191900119185 217.38598600029945 219.4529219996184 219.46805799938738 220.04809499904513 220.1169429998845 220.46329799853265 221.42740900069475 222.49149600043893 223.41105199977756 224.32780000008643 225.51424200087786 229.15177399851382 230.2948809992522 231.51110900007188 232.08129899948835 232.4474700000137 234.34073900058866 234.47147599980235 234.54719999991357 234.54976399987936 234.67517100088298 234.71175099909306 235.4765629991889 236.22774300165474 236.30761699937284 237.8988850004971 239.15852800011635 241.73730499856174 242.07149199955165 242.89493799954653 243.577677000314 244.0622969996184 244.48856600001454 244.49511700123549 250.5783690009266 254.3110349997878 260.7510170005262 268.9630539994687

Current
Mean: 222.454 ms
Stdev: 14.628 ms (6.6%)
Runs: 199.18656500056386 199.84761599823833 200.2515460010618 201.95060200057924 203.42574100010097 203.76932800002396 206.981363998726 207.30135100148618 207.98917600139976 208.00158700160682 208.69120300002396 210.09065799973905 210.7707120012492 211.3150639999658 211.3855390008539 212.41886400058866 213.0504160001874 213.2063810005784 213.39314799942076 213.92110199853778 214.02339700050652 214.14790900051594 214.54056800156832 215.19335900060833 215.378744000569 216.7786860000342 217.454142998904 219.68664599955082 219.734375 220.3389490004629 220.72261600010097 221.4229739997536 223.87915099970996 224.52413000166416 225.24845400080085 225.44873099960387 225.96134399995208 226.0610349997878 227.27990799956024 228.22261600010097 229.12776699848473 230.3082269988954 230.565511001274 231.3349200002849 232.07934500090778 233.0089929997921 234.29288700036705 234.64900800026953 236.8771570008248 237.40254699997604 238.00472000055015 238.4141440000385 239.1896979995072 239.26839200034738 240.04288700036705 246.26786299981177 259.8759770002216 260.48116100020707 260.6162519995123

Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (13/14)

Meaningless Changes To Duration (12/13)

Show entries
Name Duration
App start time nativeLaunch 23.446 ms → 24.390 ms (+0.943 ms, +4.0%)
App start time appCreation 69.534 ms → 71.683 ms (+2.149 ms, +3.1%)
App start time appCreationEnd_To_contentAppeared 516.217 ms → 508.186 ms (-8.030 ms, -1.6%)
App start time nativeLaunchEnd_To_appCreationStart 80.310 ms → 80.140 ms (-0.170 ms, ±0.0%)
App start time runJsBundle 320.271 ms → 321.400 ms (+1.129 ms, ±0.0%)
App start time regularAppStart 0.022 ms → 0.021 ms (-0.000 ms, -1.6%)
App start time (CPU) 144.741 % → 146.397 % (+1.656 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.392 MB → 384.278 MB (+0.886 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 24.458 % → 25.259 % (+0.801 %, +3.3%)
Open search router TTI Load Search Options 134.434 ms → 136.261 ms (+1.827 ms, +1.4%)
Open search router TTI Open Search Router TTI 1209.840 ms → 1243.862 ms (+34.022 ms, +2.8%)
Open search router TTI (CPU) 145.998 % → 146.484 % (+0.486 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 407.128 MB → 408.156 MB (+1.027 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.352 % → 25.203 % (-0.148 %, -0.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 488.881 ms → 489.055 ms (+0.174 ms, ±0.0%)
Report typing (CPU) 95.212 % → 95.335 % (+0.123 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 475.332 MB → 475.423 MB (+0.091 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.566 % → 20.463 % (-0.103 %, -0.5%)
Chat opening Chat TTI 717.497 ms → 727.543 ms (+10.046 ms, +1.4%)
Chat opening (CPU) 160.918 % → 160.617 % (-0.302 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 399.775 MB → 399.688 MB (-0.086 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.541 % → 32.297 % (-1.244 %, -3.7%)
Money request - Open Manual Tracking 141.061 ms → 135.632 ms (-5.429 ms, -3.8%)
Money request - Open Contacts 228.145 ms → 222.454 ms (-5.691 ms, -2.5%)
Money request - Open Create 141.602 ms → 138.018 ms (-3.584 ms, -2.5%)
Money request (CPU) 178.959 % → 178.599 % (-0.361 %, ±0.0%)
Money request (FPS) 59.317 FPS → 59.276 FPS (-0.041 FPS, ±0.0%)
Money request (RAM) 470.488 MB → 470.058 MB (-0.431 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.378 % → 44.595 % (+0.217 %, ±0.0%)
Show details
Name Duration
Money request - Open Create Baseline
Mean: 141.602 ms
Stdev: 14.249 ms (10.1%)
Runs: 113.03837100043893 115.01131100021303 122.37211100012064 123.50850399956107 124.1629639994353 124.7207440007478 125.3957120012492 125.89257900044322 126.01489300094545 126.18216999992728 128.79040499962866 129.7062180005014 130.9134119991213 131.10868399962783 131.11344400048256 131.769369000569 131.81119799986482 133.57071899995208 134.29028399847448 134.84122799895704 135.29764799959958 136.11283399909735 136.7458910010755 137.60270200110972 138.05021199956536 138.11230500042439 138.46431499905884 139.84057600051165 140.03828899934888 140.36796099878848 142.50716200098395 142.57401599921286 143.82222499884665 143.8602700009942 144.11177599988878 144.39176400005817 144.48819999955595 144.66686999984086 145.27209500037134 145.46858800016344 146.35550899989903 146.4158939998597 147.64294500090182 150.6623129993677 150.81966200098395 151.8566479999572 152.29899100027978 152.45267800055444 154.92427599988878 154.968465000391 156.2927660010755 157.85677099972963 159.40458199940622 165.90702399984002 170.9455970004201 174.72188300080597 175.0962730012834 178.29199299961329

Current
Mean: 138.018 ms
Stdev: 10.381 ms (7.5%)
Runs: 117.16552700102329 118.30102599970996 119.08101399987936 119.58939599990845 122.23616600036621 123.36625199951231 124.50634699873626 126.0735680013895 126.33540900051594 127.53780200146139 128.06844099983573 128.23360200040042 128.90938399918377 128.93526200018823 130.62211100012064 130.93277999944985 131.203409999609 131.22005200013518 131.8895269986242 133.7279460001737 134.08837899938226 135.32535800151527 136.28690600022674 136.6822920013219 137.89131699874997 137.9394940007478 137.9862870015204 139.62500100024045 139.70556600019336 140.30997700057924 140.32690399885178 140.39021799899638 140.48803700134158 140.85221299901605 141.35733999870718 141.47778300009668 141.6114500015974 141.72391800023615 141.8502199985087 142.47200500033796 142.66284199990332 143.16438799910247 143.27864599972963 143.35506200045347 143.41943399980664 143.77929699979722 143.90507000125945 144.4431559983641 148.74857600033283 149.73221899941564 151.2095940001309 152.89359499886632 153.7261149995029 155.04349800013006 155.31331299990416 156.03454599902034 158.99523900076747 159.0366209987551
Money request (CPU) Baseline
Mean: 178.959 %
Stdev: 6.348 % (3.5%)
Runs: 165.17977418756644 169.55427503886273 170.0440232543105 170.67132825914413 170.89294174299488 171.20116511427906 171.3572280586481 171.71938750294905 172.3498033694334 172.80781524482904 172.83410722281823 173.2054062407396 173.50074508282916 173.6854166113474 173.97551110796852 174.819578138453 174.91789296205346 175.06539945633358 175.0781346152542 175.80202600698394 176.15787691288466 176.27596953081706 176.30200152694758 177.04124330328804 177.1956102181756 177.49433778480616 177.5534514817107 177.59807635136337 177.66460691080496 177.77992184873668 178.1459023413561 178.55084856028526 178.86156474928939 179.0499347900254 179.29636530908803 179.8434250792343 180.26165150988143 180.38016476926705 180.4623988579819 180.63900414189476 180.7122381468821 181.23896276588667 181.53121241511138 181.65950130842734 182.68529980264827 183.14368562079014 183.21194322719987 183.33003612156105 184.04376758011685 184.4330663179331 184.62832211458547 184.89238800872633 186.27045270108843 188.91234677997687 189.33224777994224 189.58295123497084 192.2727752652504 192.63356099233945 193.35862178844235 194.4724762156816

Current
Mean: 178.599 %
Stdev: 6.706 % (3.8%)
Runs: 165.08871560330888 166.62712369253592 168.64141011189534 169.12226461020504 169.8045506756184 169.85011791171294 170.27073017287273 170.3755285832143 170.7376894542165 171.0185793809486 171.1844550941853 171.39047878314702 171.46490745209366 172.25647162663722 172.4803530190577 172.49551237607164 173.3196489151516 174.16077262990902 174.3080437084402 174.5852828258689 175.02894217718992 175.0291050192211 177.29397158045998 177.40788827688812 177.46328933343338 177.74885116921888 178.45889813173716 178.82481550536798 178.9080051398437 179.01409045048686 179.1263691739726 179.4106964678787 180.0327502924837 180.0908585237357 180.37590337338 180.46453289026672 180.5931405495387 181.17054289467865 181.3619068580676 181.47157370115536 181.7418791581575 181.92189444965757 182.09335106756075 182.2358224895891 182.48390074914252 182.71993886733728 183.14302847108638 183.1566674009282 183.64212393067876 184.42981176897266 185.02021438410134 185.1951555858927 185.6522035098956 187.24767268032477 187.82729960189369 189.7637971074621 191.94711703831553 191.9803102229864 192.42718265157438 192.8299969757426
Money request (FPS) Baseline
Mean: 59.317 FPS
Stdev: 0.755 FPS (1.3%)
Runs: 56.97568954437257 57.51754908847323 57.77689145081623 57.94762965910517 58.01249757026989 58.27141778131416 58.277599725872605 58.288448509968134 58.38807712841383 58.458540926376806 58.54705201378665 58.61516112502083 58.750481179729505 58.76075285836197 58.92775696051111 58.97507776278966 59.04971903997364 59.05116344538349 59.17695073755524 59.22018216994591 59.22964534557696 59.23564111040353 59.250642331848134 59.362862348147374 59.4156463228988 59.418285896932595 59.48479922989337 59.494039863989364 59.510863177455626 59.529517201613835 59.560542820891506 59.577322207879305 59.58847035126354 59.77661629278981 59.808787150416705 59.89746127034115 59.922666682745515 59.997341356741735 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 59.276 FPS
Stdev: 0.773 FPS (1.3%)
Runs: 57.410527514096934 57.425480588536786 57.50000078251641 57.699411872957896 57.71951186863157 58.092583997277174 58.097225233866986 58.356559234893496 58.37642705451068 58.43003227239169 58.513939773377174 58.5350554094636 58.573958441379666 58.77403517226154 58.82871744950322 58.85320497948318 58.95892191562657 58.968154831766434 59.051961616500215 59.09746245932815 59.1357031963658 59.13649730516627 59.18218343687918 59.27043926786978 59.31228774391209 59.37348513554724 59.37729550464792 59.472544890910044 59.47867834686716 59.510907623257744 59.51100139195115 59.67076239002756 59.680613300322634 59.709571599695984 59.73990458010992 59.75503436901345 59.78444281950294 59.81769434542578 59.81874508617682 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (14/14)

Meaningless Changes To Duration (13/13)

Show entries
Name Duration
App start time nativeLaunch 23.446 ms → 24.390 ms (+0.943 ms, +4.0%)
App start time appCreation 69.534 ms → 71.683 ms (+2.149 ms, +3.1%)
App start time appCreationEnd_To_contentAppeared 516.217 ms → 508.186 ms (-8.030 ms, -1.6%)
App start time nativeLaunchEnd_To_appCreationStart 80.310 ms → 80.140 ms (-0.170 ms, ±0.0%)
App start time runJsBundle 320.271 ms → 321.400 ms (+1.129 ms, ±0.0%)
App start time regularAppStart 0.022 ms → 0.021 ms (-0.000 ms, -1.6%)
App start time (CPU) 144.741 % → 146.397 % (+1.656 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.392 MB → 384.278 MB (+0.886 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 24.458 % → 25.259 % (+0.801 %, +3.3%)
Open search router TTI Load Search Options 134.434 ms → 136.261 ms (+1.827 ms, +1.4%)
Open search router TTI Open Search Router TTI 1209.840 ms → 1243.862 ms (+34.022 ms, +2.8%)
Open search router TTI (CPU) 145.998 % → 146.484 % (+0.486 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 407.128 MB → 408.156 MB (+1.027 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.352 % → 25.203 % (-0.148 %, -0.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 488.881 ms → 489.055 ms (+0.174 ms, ±0.0%)
Report typing (CPU) 95.212 % → 95.335 % (+0.123 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 475.332 MB → 475.423 MB (+0.091 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.566 % → 20.463 % (-0.103 %, -0.5%)
Chat opening Chat TTI 717.497 ms → 727.543 ms (+10.046 ms, +1.4%)
Chat opening (CPU) 160.918 % → 160.617 % (-0.302 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 399.775 MB → 399.688 MB (-0.086 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.541 % → 32.297 % (-1.244 %, -3.7%)
Money request - Open Manual Tracking 141.061 ms → 135.632 ms (-5.429 ms, -3.8%)
Money request - Open Contacts 228.145 ms → 222.454 ms (-5.691 ms, -2.5%)
Money request - Open Create 141.602 ms → 138.018 ms (-3.584 ms, -2.5%)
Money request (CPU) 178.959 % → 178.599 % (-0.361 %, ±0.0%)
Money request (FPS) 59.317 FPS → 59.276 FPS (-0.041 FPS, ±0.0%)
Money request (RAM) 470.488 MB → 470.058 MB (-0.431 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.378 % → 44.595 % (+0.217 %, ±0.0%)
Show details
Name Duration
Money request (RAM) Baseline
Mean: 470.488 MB
Stdev: 8.674 MB (1.8%)
Runs: 454.65792410714283 455.74853515625 458.82924107142856 458.97544642857144 459.07645089285717 459.09375 459.66238839285717 459.86830357142856 460.36049107142856 460.46595982142856 462.35267857142856 463.2036830357143 463.23214285714283 463.55245535714283 463.76513671875 464.25948660714283 464.28794642857144 464.9575892857143 466.1572265625 466.3705357142857 466.3911830357143 466.92138671875 467.21484375 467.48325892857144 468.02566964285717 468.29345703125 468.625 468.880859375 469.21240234375 469.326171875 469.60267857142856 469.94482421875 470.12220982142856 470.1627604166667 470.3287760416667 470.61160714285717 471.16629464285717 471.89285714285717 472.2578125 472.6958705357143 472.75634765625 474.2467447916667 474.3053385416667 474.98270089285717 475.1099330357143 475.8197544642857 476.15792410714283 479.51395089285717 479.640625 479.72377232142856 480.5435267857143 480.96875 481.94363839285717 482.3671875 483.31138392857144 485.69252232142856 486.09988839285717 486.21261160714283 489.7532552083333 492.1099330357143

Current
Mean: 470.058 MB
Stdev: 8.914 MB (1.9%)
Runs: 451.9095982142857 452.2506510416667 452.2734375 454.51283482142856 454.70870535714283 455.68582589285717 460.76283482142856 460.81396484375 460.8666294642857 461.044921875 461.04966517857144 461.7064732142857 462.3158482142857 462.7114955357143 463.83984375 464.37548828125 464.48325892857144 464.49462890625 464.6259765625 465.83872767857144 466.2734375 467.45535714285717 467.6244419642857 467.8447265625 467.8900669642857 468.2338169642857 468.5267857142857 468.91238839285717 469.8111979166667 470.21044921875 470.77622767857144 470.8759765625 471.0771484375 472.21484375 472.2392578125 472.5224609375 472.6787109375 473.31787109375 473.8111979166667 473.83203125 475.10323660714283 475.4798177083333 475.9361979166667 475.9850260416667 477.0185546875 477.078125 477.5709635416667 477.8515625 478.10044642857144 478.1764322916667 478.4497767857143 478.6919642857143 479.39564732142856 479.921875 482.8515625 483.56138392857144 484.55859375 485.84151785714283 487.30747767857144 488.18191964285717
Money request (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Money request (CPU/UI) Baseline
Mean: 44.378 %
Stdev: 2.271 % (5.1%)
Runs: 39.9 40.3 40.5 40.6 40.9 41.2 41.7 42 42.1 42.2 42.4 42.4 42.4 42.5 42.6 42.6 42.8 42.9 43.1 43.1 43.2 43.3 43.4 43.4 43.5 43.5 43.8 43.9 44.1 44.2 44.2 44.5 44.6 44.8 44.8 44.9 45.1 45.3 45.3 45.6 45.7 45.7 46.2 46.2 46.4 46.4 46.5 46.5 46.6 46.6 46.8 47 47 47.1 47.3 47.3 47.4 47.4 47.8 51.2

Current
Mean: 44.595 %
Stdev: 1.932 % (4.3%)
Runs: 41.1 41.3 41.5 41.7 41.9 41.9 42.1 42.1 42.3 42.5 42.5 42.5 42.6 42.6 42.7 42.7 42.9 42.9 43.1 43.3 43.3 43.5 43.7 43.8 44.2 44.2 44.3 44.5 44.6 44.8 44.9 44.9 45 45.1 45.2 45.3 45.5 45.6 45.6 45.7 45.9 46 46.2 46.2 46.3 46.4 46.5 46.6 46.6 46.7 46.8 46.9 46.9 47.1 47.1 47.3 47.3 47.4 47.4 48.2

Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (2/14)

Meaningless Changes To Duration (1/13)

Show entries
Name Duration
App start time nativeLaunch 23.446 ms → 24.390 ms (+0.943 ms, +4.0%)
App start time appCreation 69.534 ms → 71.683 ms (+2.149 ms, +3.1%)
App start time appCreationEnd_To_contentAppeared 516.217 ms → 508.186 ms (-8.030 ms, -1.6%)
App start time nativeLaunchEnd_To_appCreationStart 80.310 ms → 80.140 ms (-0.170 ms, ±0.0%)
App start time runJsBundle 320.271 ms → 321.400 ms (+1.129 ms, ±0.0%)
App start time regularAppStart 0.022 ms → 0.021 ms (-0.000 ms, -1.6%)
App start time (CPU) 144.741 % → 146.397 % (+1.656 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.392 MB → 384.278 MB (+0.886 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 24.458 % → 25.259 % (+0.801 %, +3.3%)
Open search router TTI Load Search Options 134.434 ms → 136.261 ms (+1.827 ms, +1.4%)
Open search router TTI Open Search Router TTI 1209.840 ms → 1243.862 ms (+34.022 ms, +2.8%)
Open search router TTI (CPU) 145.998 % → 146.484 % (+0.486 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 407.128 MB → 408.156 MB (+1.027 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.352 % → 25.203 % (-0.148 %, -0.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 488.881 ms → 489.055 ms (+0.174 ms, ±0.0%)
Report typing (CPU) 95.212 % → 95.335 % (+0.123 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 475.332 MB → 475.423 MB (+0.091 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.566 % → 20.463 % (-0.103 %, -0.5%)
Chat opening Chat TTI 717.497 ms → 727.543 ms (+10.046 ms, +1.4%)
Chat opening (CPU) 160.918 % → 160.617 % (-0.302 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 399.775 MB → 399.688 MB (-0.086 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.541 % → 32.297 % (-1.244 %, -3.7%)
Money request - Open Manual Tracking 141.061 ms → 135.632 ms (-5.429 ms, -3.8%)
Money request - Open Contacts 228.145 ms → 222.454 ms (-5.691 ms, -2.5%)
Money request - Open Create 141.602 ms → 138.018 ms (-3.584 ms, -2.5%)
Money request (CPU) 178.959 % → 178.599 % (-0.361 %, ±0.0%)
Money request (FPS) 59.317 FPS → 59.276 FPS (-0.041 FPS, ±0.0%)
Money request (RAM) 470.488 MB → 470.058 MB (-0.431 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.378 % → 44.595 % (+0.217 %, ±0.0%)
Show details
Name Duration
App start time nativeLaunch Baseline
Mean: 23.446 ms
Stdev: 2.314 ms (9.9%)
Runs: 20 20 21 21 21 21 21 21 21 21 21 22 22 22 22 22 22 22 22 22 22 22 22 22 23 23 23 23 23 23 23 23 23 23 24 24 24 24 24 24 25 25 25 25 25 25 25 26 26 27 27 27 29 29 29 29

Current
Mean: 24.390 ms
Stdev: 2.840 ms (11.6%)
Runs: 21 21 21 21 22 22 22 22 22 22 22 22 22 22 22 22 22 22 22 22 22 23 23 23 23 23 23 23 23 24 24 24 24 24 24 24 24 24 25 25 25 25 26 26 26 27 27 27 27 28 28 28 29 29 29 30 31 31 32
App start time appCreation Baseline
Mean: 69.534 ms
Stdev: 8.328 ms (12.0%)
Runs: 50 55 57 58 58 59 59 60 60 61 61 61 62 62 63 63 65 65 65 67 67 68 68 69 69 69 70 70 70 70 70 70 70 70 71 72 72 72 72 72 72 73 73 74 75 75 76 77 77 78 79 82 82 82 84 85 86 91

Current
Mean: 71.683 ms
Stdev: 9.807 ms (13.7%)
Runs: 52 58 59 59 59 60 60 60 60 61 61 62 62 62 64 64 64 65 67 67 67 67 67 68 68 69 69 69 69 71 71 72 73 73 73 73 74 74 75 75 75 76 77 77 78 78 78 78 79 80 82 84 85 86 88 89 91 91 93 93
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 516.217 ms
Stdev: 30.296 ms (5.9%)
Runs: 456 457 458 465 478 479 481 482 485 486 487 488 489 489 492 494 494 497 499 503 503 506 506 507 510 513 513 513 514 516 517 517 518 519 521 522 526 527 527 528 530 531 534 535 536 539 539 541 541 542 543 544 548 552 557 559 571 575 585 589

Current
Mean: 508.186 ms
Stdev: 32.446 ms (6.4%)
Runs: 444 458 459 459 465 470 471 475 476 478 479 479 479 480 480 485 485 488 489 491 491 495 496 497 498 499 501 502 502 502 504 504 505 508 511 512 514 515 521 522 523 526 529 530 530 534 538 539 539 542 543 546 556 557 560 566 572 573 591

Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (3/14)

Meaningless Changes To Duration (2/13)

Show entries
Name Duration
App start time nativeLaunch 23.446 ms → 24.390 ms (+0.943 ms, +4.0%)
App start time appCreation 69.534 ms → 71.683 ms (+2.149 ms, +3.1%)
App start time appCreationEnd_To_contentAppeared 516.217 ms → 508.186 ms (-8.030 ms, -1.6%)
App start time nativeLaunchEnd_To_appCreationStart 80.310 ms → 80.140 ms (-0.170 ms, ±0.0%)
App start time runJsBundle 320.271 ms → 321.400 ms (+1.129 ms, ±0.0%)
App start time regularAppStart 0.022 ms → 0.021 ms (-0.000 ms, -1.6%)
App start time (CPU) 144.741 % → 146.397 % (+1.656 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.392 MB → 384.278 MB (+0.886 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 24.458 % → 25.259 % (+0.801 %, +3.3%)
Open search router TTI Load Search Options 134.434 ms → 136.261 ms (+1.827 ms, +1.4%)
Open search router TTI Open Search Router TTI 1209.840 ms → 1243.862 ms (+34.022 ms, +2.8%)
Open search router TTI (CPU) 145.998 % → 146.484 % (+0.486 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 407.128 MB → 408.156 MB (+1.027 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.352 % → 25.203 % (-0.148 %, -0.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 488.881 ms → 489.055 ms (+0.174 ms, ±0.0%)
Report typing (CPU) 95.212 % → 95.335 % (+0.123 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 475.332 MB → 475.423 MB (+0.091 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.566 % → 20.463 % (-0.103 %, -0.5%)
Chat opening Chat TTI 717.497 ms → 727.543 ms (+10.046 ms, +1.4%)
Chat opening (CPU) 160.918 % → 160.617 % (-0.302 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 399.775 MB → 399.688 MB (-0.086 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.541 % → 32.297 % (-1.244 %, -3.7%)
Money request - Open Manual Tracking 141.061 ms → 135.632 ms (-5.429 ms, -3.8%)
Money request - Open Contacts 228.145 ms → 222.454 ms (-5.691 ms, -2.5%)
Money request - Open Create 141.602 ms → 138.018 ms (-3.584 ms, -2.5%)
Money request (CPU) 178.959 % → 178.599 % (-0.361 %, ±0.0%)
Money request (FPS) 59.317 FPS → 59.276 FPS (-0.041 FPS, ±0.0%)
Money request (RAM) 470.488 MB → 470.058 MB (-0.431 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.378 % → 44.595 % (+0.217 %, ±0.0%)
Show details
Name Duration
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 80.310 ms
Stdev: 9.313 ms (11.6%)
Runs: 66 66 67 68 68 70 70 70 70 72 72 72 73 73 73 73 74 74 74 74 75 75 76 77 78 78 78 79 79 79 80 81 81 81 81 82 83 83 83 83 83 84 84 85 87 88 88 89 89 90 91 93 94 96 98 101 102 105

Current
Mean: 80.140 ms
Stdev: 8.432 ms (10.5%)
Runs: 65 66 67 68 68 69 70 71 72 72 73 74 74 74 74 75 75 75 76 77 77 77 77 77 78 78 78 79 79 80 80 80 81 81 81 81 82 83 83 83 84 84 85 86 87 87 88 88 89 89 90 93 93 95 98 98 104
App start time runJsBundle Baseline
Mean: 320.271 ms
Stdev: 20.211 ms (6.3%)
Runs: 276 276 287 287 290 290 290 290 292 292 292 292 292 292 295 295 296 296 296 296 297 297 301 301 302 302 302 302 305 305 305 305 306 306 308 308 308 308 309 309 310 310 311 311 312 312 314 314 315 315 317 317 318 318 318 318 321 321 322 322 325 325 325 325 327 327 327 327 327 327 328 328 328 328 328 328 329 329 329 329 332 332 333 333 333 333 333 333 334 334 335 335 338 338 339 339 342 342 342 342 343 343 343 343 345 345 346 346 347 347 351 351 354 354 358 358 368 368

Current
Mean: 321.400 ms
Stdev: 21.842 ms (6.8%)
Runs: 284 284 288 288 290 290 293 293 293 293 294 294 295 295 296 296 297 297 299 299 300 300 300 300 300 300 300 300 301 301 302 302 304 304 304 304 308 308 310 310 310 310 310 310 310 310 310 310 310 310 312 312 313 313 317 317 317 317 318 318 318 318 318 318 320 320 323 323 324 324 325 325 327 327 329 329 330 330 333 333 334 334 335 335 336 336 336 336 337 337 337 337 343 343 345 345 346 346 346 346 347 347 348 348 352 352 354 354 354 354 357 357 358 358 358 358 364 364 365 365
App start time regularAppStart Baseline
Mean: 0.022 ms
Stdev: 0.003 ms (14.7%)
Runs: 0.0172520000487566 0.017985000275075436 0.018106999807059765 0.018108000047504902 0.018636000342667103 0.018717000260949135 0.019001999869942665 0.019164999946951866 0.019164999946951866 0.019245999865233898 0.01928700041025877 0.01948999986052513 0.019652999937534332 0.019733999855816364 0.019816000014543533 0.019979000091552734 0.020060000009834766 0.020100999623537064 0.020100999623537064 0.020142000168561935 0.02034500055015087 0.02034500055015087 0.0204670000821352 0.02058899961411953 0.02075199969112873 0.0208339998498559 0.02091400045901537 0.021240999922156334 0.021280999295413494 0.021361999213695526 0.021849999204277992 0.021971999667584896 0.02205400075763464 0.022297999821603298 0.022420000284910202 0.0224609998986125 0.02274599950760603 0.022746000438928604 0.022746000438928604 0.02307100035250187 0.023152999579906464 0.023315000347793102 0.0240470003336668 0.0247809998691082 0.025065000168979168 0.02526900079101324 0.025553000159561634 0.02705799974501133 0.027628999203443527 0.027954000048339367 0.03055799938738346 0.033488000743091106

Current
Mean: 0.021 ms
Stdev: 0.003 ms (12.6%)
Runs: 0.017578000202775 0.017862999811768532 0.017903000116348267 0.0181470001116395 0.018269999884068966 0.018269999884068966 0.018473000265657902 0.01859499979764223 0.018636000342667103 0.018757999874651432 0.018799000419676304 0.018880000337958336 0.01912499964237213 0.019367999397218227 0.019368999637663364 0.019733999855816364 0.01985699962824583 0.019937999546527863 0.019938000477850437 0.02001900039613247 0.020060000009834766 0.02014199923723936 0.02018200047314167 0.02034500055015087 0.020426999777555466 0.020589999854564667 0.020750999450683594 0.020752000622451305 0.020793000236153603 0.021037000231444836 0.021077999845147133 0.021118000149726868 0.02115900069475174 0.02160700038075447 0.021687999367713928 0.02189100068062544 0.021971999667584896 0.022013000212609768 0.022013000212609768 0.0224609998986125 0.022501999512314796 0.022827000357210636 0.022948999889194965 0.023111999966204166 0.023153000511229038 0.02339700050652027 0.023641000501811504 0.0236820001155138 0.023845000192523003 0.023966999724507332 0.023966999724507332 0.024821000173687935 0.024861999787390232 0.02526900079101324 0.025879000313580036 0.028727000579237938 0.028970999643206596 0.02905199956148863

Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (4/14)

Meaningless Changes To Duration (3/13)

Show entries
Name Duration
App start time nativeLaunch 23.446 ms → 24.390 ms (+0.943 ms, +4.0%)
App start time appCreation 69.534 ms → 71.683 ms (+2.149 ms, +3.1%)
App start time appCreationEnd_To_contentAppeared 516.217 ms → 508.186 ms (-8.030 ms, -1.6%)
App start time nativeLaunchEnd_To_appCreationStart 80.310 ms → 80.140 ms (-0.170 ms, ±0.0%)
App start time runJsBundle 320.271 ms → 321.400 ms (+1.129 ms, ±0.0%)
App start time regularAppStart 0.022 ms → 0.021 ms (-0.000 ms, -1.6%)
App start time (CPU) 144.741 % → 146.397 % (+1.656 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.392 MB → 384.278 MB (+0.886 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 24.458 % → 25.259 % (+0.801 %, +3.3%)
Open search router TTI Load Search Options 134.434 ms → 136.261 ms (+1.827 ms, +1.4%)
Open search router TTI Open Search Router TTI 1209.840 ms → 1243.862 ms (+34.022 ms, +2.8%)
Open search router TTI (CPU) 145.998 % → 146.484 % (+0.486 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 407.128 MB → 408.156 MB (+1.027 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.352 % → 25.203 % (-0.148 %, -0.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 488.881 ms → 489.055 ms (+0.174 ms, ±0.0%)
Report typing (CPU) 95.212 % → 95.335 % (+0.123 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 475.332 MB → 475.423 MB (+0.091 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.566 % → 20.463 % (-0.103 %, -0.5%)
Chat opening Chat TTI 717.497 ms → 727.543 ms (+10.046 ms, +1.4%)
Chat opening (CPU) 160.918 % → 160.617 % (-0.302 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 399.775 MB → 399.688 MB (-0.086 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.541 % → 32.297 % (-1.244 %, -3.7%)
Money request - Open Manual Tracking 141.061 ms → 135.632 ms (-5.429 ms, -3.8%)
Money request - Open Contacts 228.145 ms → 222.454 ms (-5.691 ms, -2.5%)
Money request - Open Create 141.602 ms → 138.018 ms (-3.584 ms, -2.5%)
Money request (CPU) 178.959 % → 178.599 % (-0.361 %, ±0.0%)
Money request (FPS) 59.317 FPS → 59.276 FPS (-0.041 FPS, ±0.0%)
Money request (RAM) 470.488 MB → 470.058 MB (-0.431 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.378 % → 44.595 % (+0.217 %, ±0.0%)
Show details
Name Duration
App start time (CPU) Baseline
Mean: 144.741 %
Stdev: 5.827 % (4.0%)
Runs: 132.21165364895302 133.95066773631893 134.0337077324641 134.436476778379 134.78447949577085 135.66941031452544 136.1628576915691 136.29193226450326 138.6163010778395 140.41346670632382 140.63382241838644 140.85858585858585 140.91805630267172 141.1730529551226 141.6501071865083 141.8076068173464 141.81562291366785 141.82425930483447 141.90979455561873 142.39176847634883 142.4607755229644 142.5088568398651 142.55453140450078 143.15768463073854 143.57075788061698 143.8497421856107 144.38223685431254 144.58800169799287 144.77039399846416 145.32828282828282 145.50515569449306 145.720227512184 145.82159651797951 146.38802817845118 146.39626293773736 146.46016297045063 146.5534595487091 146.61235071613757 146.63040636364357 146.76095617529884 146.91135258564944 147.19041244342446 147.40859870025864 147.8788403697463 148.03960672049055 148.22915003193867 148.68113643073687 149.05987601830282 149.0669317428761 149.11020970863487 149.29397870204528 149.52324099744197 153.79843481580457 154.20920982236956 154.35392749322932 155.0669317428761 155.95188844711566 156.85206032879034 157.50950323454666

Current
Mean: 146.397 %
Stdev: 6.160 % (4.2%)
Runs: 134.2749539705013 135.0554729366583 135.8974666059866 136.19336077587553 138.1525085970894 139.08516175564483 139.11909481803858 139.6709844897533 139.91005291005294 140.23003893727372 140.31561223874783 140.3682553364644 140.8423153692615 140.8823359317974 140.92848112529168 141.22277857547758 141.380403905454 142.28908771328676 142.49421212786643 143.24245565716112 143.26323971962557 143.5823701620234 143.82475114981378 143.93669970521802 144.49667994687908 144.7428323700106 144.8173646968828 144.9141607512648 145.30003081598602 146.0067058498678 146.2846111808416 146.30810092961482 146.6879194874147 147.16872939488022 147.40189190162997 148.49054881557592 148.52777073790892 148.68260949093778 148.9474260286175 149.34697327294765 149.75213835563648 149.79860317055588 150.98977505112475 151.0105851913036 151.20180453684046 151.85366426558093 151.91457307228936 152.14028924897895 152.22168739347262 152.2992636606131 152.3407017092919 153.3694779116466 153.59417580328287 153.60515609519598 155.2222997235785 156.6731367406255 156.76288784743986 156.8274613353802 158.76481418185207 159.1918490260167
App start time (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
App start time (RAM) Baseline
Mean: 383.392 MB
Stdev: 8.457 MB (2.2%)
Runs: 360.48828125 365.384765625 365.39453125 367.052734375 367.48046875 370.28125 373.466796875 373.904296875 374.82421875 375.12890625 376.197265625 376.2421875 376.859375 376.92578125 376.96484375 377.4296875 377.8567708333333 378.6158854166667 378.85546875 379.064453125 380.7799479166667 382.0859375 382.3828125 382.5247395833333 382.74609375 383.427734375 384.2630208333333 385.04296875 385.3919270833333 385.5416666666667 385.95703125 386.359375 386.4205729166667 386.7721354166667 386.78515625 387.0872395833333 387.4440104166667 387.6067708333333 387.61328125 387.6901041666667 387.7213541666667 388.53125 388.7174479166667 388.9270833333333 389.05078125 389.09375 389.2083333333333 389.31640625 389.3346354166667 389.4283854166667 389.5481770833333 391.2721354166667 391.29296875 392.3359375 392.9140625 393.1705729166667 394.91015625 398.1588541666667 398.380859375 399.8723958333333

Current
Mean: 384.278 MB
Stdev: 6.919 MB (1.8%)
Runs: 368.4765625 368.54296875 372.0911458333333 372.5052083333333 374.2161458333333 374.794921875 374.796875 375.751953125 376.1875 376.443359375 376.5390625 376.5572916666667 377.66796875 379.0364583333333 379.458984375 379.50390625 379.716796875 380.53125 381.7239583333333 381.859375 382.2434895833333 382.2903645833333 382.33203125 383.78515625 383.8033854166667 383.9192708333333 384.2135416666667 384.5703125 384.8606770833333 385.2408854166667 385.5572916666667 385.6315104166667 385.9388020833333 386.0091145833333 386.1627604166667 386.4622395833333 386.9309895833333 387.0690104166667 387.3919270833333 387.4739583333333 388.6002604166667 389.03515625 389.37890625 389.5130208333333 389.70703125 389.75 390.046875 390.3333333333333 390.34375 390.671875 391.71484375 391.9388020833333 392.3828125 393.26171875 393.45703125 393.6861979166667 395.3893229166667 396.0885416666667 398.8346354166667

Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (5/14)

Meaningless Changes To Duration (4/13)

Show entries
Name Duration
App start time nativeLaunch 23.446 ms → 24.390 ms (+0.943 ms, +4.0%)
App start time appCreation 69.534 ms → 71.683 ms (+2.149 ms, +3.1%)
App start time appCreationEnd_To_contentAppeared 516.217 ms → 508.186 ms (-8.030 ms, -1.6%)
App start time nativeLaunchEnd_To_appCreationStart 80.310 ms → 80.140 ms (-0.170 ms, ±0.0%)
App start time runJsBundle 320.271 ms → 321.400 ms (+1.129 ms, ±0.0%)
App start time regularAppStart 0.022 ms → 0.021 ms (-0.000 ms, -1.6%)
App start time (CPU) 144.741 % → 146.397 % (+1.656 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.392 MB → 384.278 MB (+0.886 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 24.458 % → 25.259 % (+0.801 %, +3.3%)
Open search router TTI Load Search Options 134.434 ms → 136.261 ms (+1.827 ms, +1.4%)
Open search router TTI Open Search Router TTI 1209.840 ms → 1243.862 ms (+34.022 ms, +2.8%)
Open search router TTI (CPU) 145.998 % → 146.484 % (+0.486 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 407.128 MB → 408.156 MB (+1.027 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.352 % → 25.203 % (-0.148 %, -0.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 488.881 ms → 489.055 ms (+0.174 ms, ±0.0%)
Report typing (CPU) 95.212 % → 95.335 % (+0.123 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 475.332 MB → 475.423 MB (+0.091 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.566 % → 20.463 % (-0.103 %, -0.5%)
Chat opening Chat TTI 717.497 ms → 727.543 ms (+10.046 ms, +1.4%)
Chat opening (CPU) 160.918 % → 160.617 % (-0.302 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 399.775 MB → 399.688 MB (-0.086 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.541 % → 32.297 % (-1.244 %, -3.7%)
Money request - Open Manual Tracking 141.061 ms → 135.632 ms (-5.429 ms, -3.8%)
Money request - Open Contacts 228.145 ms → 222.454 ms (-5.691 ms, -2.5%)
Money request - Open Create 141.602 ms → 138.018 ms (-3.584 ms, -2.5%)
Money request (CPU) 178.959 % → 178.599 % (-0.361 %, ±0.0%)
Money request (FPS) 59.317 FPS → 59.276 FPS (-0.041 FPS, ±0.0%)
Money request (RAM) 470.488 MB → 470.058 MB (-0.431 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.378 % → 44.595 % (+0.217 %, ±0.0%)
Show details
Name Duration
App start time (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
App start time (CPU/UI) Baseline
Mean: 24.458 %
Stdev: 1.652 % (6.8%)
Runs: 21 21 21.1 22 22 22.1 22.6 22.7 22.7 23.2 23.2 23.2 23.3 23.3 23.7 23.7 23.8 23.9 23.9 23.9 23.9 23.9 24 24 24 24 24 24.3 24.6 24.6 24.6 24.6 24.7 24.7 24.7 24.8 25 25 25 25.2 25.2 25.2 25.3 25.3 25.4 25.9 25.9 26 26.1 26.1 26.2 26.6 27 27.8 28 28 28.2

Current
Mean: 25.259 %
Stdev: 2.041 % (8.1%)
Runs: 20.8 21 21.3 22.7 22.7 23 23.2 23.2 23.3 23.3 23.3 23.9 23.9 23.9 23.9 24 24 24.1 24.1 24.5 24.5 24.6 24.6 24.6 24.7 24.7 24.7 24.7 24.7 24.7 24.8 24.8 25.2 25.3 25.3 25.4 25.8 25.9 26 26 26 26.6 26.7 26.8 27 27.4 27.4 27.7 27.8 27.9 28 28 28.1 28.1 28.6 28.7 29.1 30
Open search router TTI Load Search Options Baseline
Mean: 134.434 ms
Stdev: 6.578 ms (4.9%)
Runs: 121.54121899977326 122.86230499856174 123.04581699892879 125.71618700027466 126.83833899907768 127.10286499932408 127.2602540012449 127.6337080001831 127.97017399966717 128.11385099962354 128.20638000033796 128.5432540010661 128.80546099878848 129.28702799975872 129.59570300020278 130.75366199947894 131.12845899909735 131.15873200073838 131.2561029996723 131.60343400016427 131.6645100004971 131.69380700029433 132.09851000085473 132.23779300041497 132.4772950001061 132.5702309999615 132.62939500063658 132.66088899970055 132.95418300107121 133.02042699977756 133.04313199967146 133.38504999876022 133.57800300046802 133.60144000127912 133.67195700109005 134.10632300004363 134.26436400040984 134.7486569993198 135.12569200061262 135.23339900001884 135.34171500056982 135.8872469998896 136.1334230005741 136.19946299865842 137.74052000045776 139.18912799842656 139.34757499955595 142.28377299942076 143.0627440009266 143.2268070001155 143.9460450001061 144.04638700000942 144.23767099902034 144.31945800036192 144.46944100037217 144.74287999980152 144.87068700045347 145.438110999763 146.77974400110543 151.60750399902463

Current
Mean: 136.261 ms
Stdev: 6.120 ms (4.5%)
Runs: 125.14921099878848 125.60351500101388 126.49039800092578 126.95353200100362 127.17590299993753 127.26066100038588 127.36515299975872 128.18876099959016 128.81738300062716 129.231200998649 129.65983099862933 129.91113300062716 130.21773199923337 132.16182499937713 132.29036499932408 132.62829600088298 132.95532199926674 133.15612800046802 133.74291999824345 133.8511960003525 133.98832199908793 134.36979100108147 134.48860700055957 134.6641440000385 134.95349099859595 134.9622809998691 135.04817700013518 135.20170100033283 135.21761099994183 135.21870899945498 135.53576700016856 135.54781099967659 135.56502299942076 136.03043700009584 137.171875 137.17944400012493 137.49531999975443 138.16044100001454 138.3884270004928 138.71834400109947 138.93204700015485 139.35404399968684 139.3774420004338 139.78401700034738 140.171875 140.26444599963725 141.39339200034738 141.78621399961412 142.1995040010661 142.37919100001454 143.26257300004363 144.03137200139463 144.06156400032341 145.0792239997536 145.1403809990734 145.39139799959958 145.9681399986148 148.49153700098395 148.82307900115848 149.05139099992812

Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (6/14)

Meaningless Changes To Duration (5/13)

Show entries
Name Duration
App start time nativeLaunch 23.446 ms → 24.390 ms (+0.943 ms, +4.0%)
App start time appCreation 69.534 ms → 71.683 ms (+2.149 ms, +3.1%)
App start time appCreationEnd_To_contentAppeared 516.217 ms → 508.186 ms (-8.030 ms, -1.6%)
App start time nativeLaunchEnd_To_appCreationStart 80.310 ms → 80.140 ms (-0.170 ms, ±0.0%)
App start time runJsBundle 320.271 ms → 321.400 ms (+1.129 ms, ±0.0%)
App start time regularAppStart 0.022 ms → 0.021 ms (-0.000 ms, -1.6%)
App start time (CPU) 144.741 % → 146.397 % (+1.656 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.392 MB → 384.278 MB (+0.886 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 24.458 % → 25.259 % (+0.801 %, +3.3%)
Open search router TTI Load Search Options 134.434 ms → 136.261 ms (+1.827 ms, +1.4%)
Open search router TTI Open Search Router TTI 1209.840 ms → 1243.862 ms (+34.022 ms, +2.8%)
Open search router TTI (CPU) 145.998 % → 146.484 % (+0.486 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 407.128 MB → 408.156 MB (+1.027 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.352 % → 25.203 % (-0.148 %, -0.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 488.881 ms → 489.055 ms (+0.174 ms, ±0.0%)
Report typing (CPU) 95.212 % → 95.335 % (+0.123 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 475.332 MB → 475.423 MB (+0.091 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.566 % → 20.463 % (-0.103 %, -0.5%)
Chat opening Chat TTI 717.497 ms → 727.543 ms (+10.046 ms, +1.4%)
Chat opening (CPU) 160.918 % → 160.617 % (-0.302 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 399.775 MB → 399.688 MB (-0.086 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.541 % → 32.297 % (-1.244 %, -3.7%)
Money request - Open Manual Tracking 141.061 ms → 135.632 ms (-5.429 ms, -3.8%)
Money request - Open Contacts 228.145 ms → 222.454 ms (-5.691 ms, -2.5%)
Money request - Open Create 141.602 ms → 138.018 ms (-3.584 ms, -2.5%)
Money request (CPU) 178.959 % → 178.599 % (-0.361 %, ±0.0%)
Money request (FPS) 59.317 FPS → 59.276 FPS (-0.041 FPS, ±0.0%)
Money request (RAM) 470.488 MB → 470.058 MB (-0.431 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.378 % → 44.595 % (+0.217 %, ±0.0%)
Show details
Name Duration
Open search router TTI Open Search Router TTI Baseline
Mean: 1209.840 ms
Stdev: 79.620 ms (6.6%)
Runs: 1001.5775559991598 1003.6008299998939 1007.430907998234 1008.0256760008633 1012.3494469989091 1018.6743980012834 1019.3312180005014 1020.5771490000188 1023.0258800014853 1025.128907000646 1026.0261240005493 1032.425741000101 1033.7671309988946 1037.9276129994541 1038.3994140010327 1041.1401779986918 1041.5527760013938 1041.9619149994105 1044.038371000439 1045.6385510005057 1047.8489589989185 1049.903442999348 1051.0988769996911 1052.1329760011286 1052.6335859987885 1056.5603849999607 1056.7585040014237 1061.855550000444 1063.3280849996954 1064.2865000013262 1066.5814209990203 1068.8774829991162 1069.2490650005639 1070.6264660004526 1072.679239999503 1077.32279500179 1079.8378100004047 1086.7177329994738 1086.872112000361 1088.0670979991555 1099.2958169989288 1100.9334720000625 1101.2084550000727 1101.6495779994875 1102.52392699942 1112.1551929991692 1112.4537760000676 1114.1335460003465 1114.3289390001446 1114.7309169992805 1115.509114999324 1115.8580729998648 1117.7991550005972 1118.444621000439 1119.098022999242 1119.098022999242 1119.2178550008684 1119.2178550008684 1119.803954999894 1121.1503910012543 1121.3492029998451 1121.5372320003808 1121.8765060007572 1122.2107340004295 1122.3488369993865 1126.5950119998306 1126.784872001037 1127.2799479998648 1127.7294110003859 1127.9358319994062 1128.601725999266 1128.9265960007906 1130.3562010005116 1130.9167080000043 1132.3394779991359 1132.9489750005305 1133.1274420004338 1133.4460859987885 1134.5533449985087 1135.0766200013459 1135.4943040013313 1135.6160889994353 1135.652546999976 1135.7273770011961 1135.7459720000625 1136.809001000598 1137.1835539992899 1138.6650809999555 1139.3059499990195 1140.273315999657 1142.1475429981947 1143.0305590014905 1143.176310999319 1143.2708740010858 1144.0404460001737 1144.8331709988415 1145.1258140001446 1145.9311530012637 1147.7398680001497 1147.871501000598 1148.3073739986867 1150.0360519997776 1150.053833000362 1150.0896409992129 1150.094360999763 1151.0897220000625 1151.7649339996278 1152.4186620004475 1152.8964029997587 1152.8964029997587 1152.9794929996133 1153.4259850010276 1153.4259850010276 1153.6416020002216 1154.012574000284 1155.2019039988518 1155.2241210006177 1155.4346930012107 1155.4359949994832 1155.8793540000916 1155.8793540000916 1156.1005049999803 1156.5618910007179 1157.1185710001737 1157.1442469991744 1157.6405849996954 1157.831828000024 1158.634277999401 1159.2057700008154 1159.3179930001497 1159.4860849995166 1159.563802998513 1160.26302199997 1160.2722169999033 1160.2762049995363 1161.4764809999615 1161.7719730008394 1162.212280999869 1162.8655600007623 1163.09521599859 1163.6437180005014 1164.6231690011919 1164.6521819997579 1165.872110998258 1166.5848389994353 1166.6006680000573 1166.7587899994105 1166.7993170004338 1167.1842450015247 1167.574178000912 1167.863282000646 1168.034831000492 1168.6578779984266 1169.30786200054 1169.3085130006075 1169.4563400000334 1169.491374000907 1169.6142579987645 1170.0020759999752 1170.1266280002892 1170.211954999715 1170.4427090007812 1171.3830980006605 1171.6241459995508 1171.6547040008008 1172.1439209990203 1172.1525480002165 1172.9401859994978 1173.3171389997005 1173.6935219988227 1174.8999439999461 1175.3666990008205 1175.914673000574 1176.1331789996475 1176.629435999319 1177.0313729997724 1177.265748001635 1177.4311120007187 1177.85253899917 1177.8896890003234 1177.965007999912 1178.4746500011533 1178.6572680007666 1179.3306889999658 1179.656658001244 1179.8613699991256 1180.601114999503 1180.9901529997587 1181.090699000284 1181.2167569994926 1181.2423100005835 1181.4878349993378 1181.7224120013416 1182.2897540014237 1182.5479340013117 1182.7788910008967 1182.8972169999033 1183.383992999792 1183.4814059995115 1183.6347250007093 1183.672851998359 1184.1454680003226 1184.3523359987885 1184.4958500005305 1184.9194340016693 1185.157267998904 1186.7235109992325 1187.0723069999367 1187.238932998851 1187.3254799991846 1187.4960939995944 1188.187989000231 1188.5584319997579 1188.5866710003465 1188.7342130001634 1188.7609459999949 1189.6536050010473 1190.102132000029 1190.14139899984 1190.4283860009164 1190.9177659992129 1191.2130540013313 1191.6282969992608 1191.841390999034 1192.5030930005014 1193.2703460007906 1193.5743009988219 1193.5898039992899 1193.801188999787 1194.0115970000625 1194.038738001138 1194.3094080016017 1194.7970390003175 1194.9792080000043 1195.363199999556 1195.7494719997048 1196.429281000048 1197.3702000007033 1197.442179998383 1197.83158400096 1198.0026040002704 1198.1969000007957 1198.3283699993044 1198.8525400012732 1199.2083740010858 1199.3563230000436 1199.9200449995697 1200.1579599995166 1200.4499920010567 1200.5887049995363 1200.6390390004963 1201.1426600012928 1201.2331550009549 1201.3717049993575 1201.4425049982965 1201.4875900000334 1201.7089440003037 1201.8025320004672 1201.894817000255 1205.3087569996715 1207.1645510010421 1207.356935000047 1207.4902750011533 1207.5865889992565 1207.5865889992565 1207.9507650006562 1207.969360999763 1208.0625010002404 1208.4414069987833 1208.9133720006794 1209.528036000207 1209.6558440010995 1210.1318769995123 1210.4324139989913 1210.5821940004826 1210.6046559996903 1210.6905519999564 1210.7923179995269 1211.3495690003037 1211.3651129994541 1211.532145999372 1212.2848719991744 1213.601766999811 1214.945069000125 1215.297364000231 1215.399007000029 1215.4701339993626 1215.7490640003234 1215.8492029998451 1215.9273690003902 1216.1497000008821 1216.2565110009164 1216.3026940003037 1216.8456629998982 1216.8456629998982 1217.0531820002943 1217.547159999609 1217.6334639992565 1217.6472579985857 1218.18827399984 1218.2194429989904 1218.418417001143 1218.4908460006118 1219.2460540011525 1219.7413739990443 1219.874471001327 1220.8951420001686 1221.8146570008248 1221.8336590006948 1221.8528659995645 1221.8528659995645 1222.1394050009549 1222.429444000125 1222.4881599992514 1223.1790369991213 1223.945232000202 1223.9747730009258 1224.668945999816 1225.652994999662 1225.652994999662 1225.9896240010858 1226.070232000202 1226.0982259996235 1226.5345060005784 1227.0582279991359 1228.0419529993087 1228.1974289994687 1228.2669679988176 1228.9753419999033 1229.769897999242 1229.769897999242 1229.938680998981 1230.0739750005305 1230.9000660013407 1230.980632999912 1231.4394950009882 1232.5053720008582 1232.7852389998734 1233.347779000178 1233.3806570004672 1233.4552009999752 1233.475829999894 1233.5049649998546 1233.5051269996911 1233.5836599990726 1233.742757000029 1234.52787300013 1234.9111330006272 1235.0642499998212 1235.3358979988843 1235.7066249996424 1235.8299569990486 1235.8554289992899 1236.6008310001343 1237.5166020002216 1238.0052090007812 1239.203940000385 1239.3413500003517 1239.668904999271 1239.9422200005502 1240.99536200054 1241.2757159993052 1241.3066819999367 1241.60127799958 1241.7754319999367 1241.9744879994541 1243.8168950006366 1243.8642180003226 1243.8741059992462 1245.6075439993292 1245.7335209995508 1245.8900559991598 1245.8900559991598 1245.9289560001343 1246.1376140005887 1246.871786000207 1248.1156830005348 1248.5096850004047 1249.0677899997681 1249.1469739992172 1249.3344320002943 1250.0496430005878 1250.2908939998597 1250.5206710007042 1252.0988769996911 1254.0362960007042 1254.0526539999992 1254.3116870000958 1254.5600589998066 1256.1883550006896 1256.7517510000616 1257.167726000771 1257.3193369992077 1257.4056000001729 1257.563395999372 1257.586548000574 1258.3245859984308 1259.91581299901 1259.949869999662 1259.949869999662 1261.5745039992034 1266.3279219996184 1266.4049079995602 1266.5966799985617 1266.81665099971 1266.9528820011765 1266.9784350004047 1267.181722998619 1267.187906999141 1267.2828790005296 1267.3447270002216 1267.8260499984026 1270.4411629997194 1272.8296320009977 1273.2218839991838 1273.3024909999222 1273.5012619998306 1273.5864259991795 1274.0728769991547 1274.610759999603 1275.99393799901 1276.097657000646 1276.300171000883 1277.1615399997681 1279.5645759999752 1279.9974370002747 1280.1553560011089 1280.9710699990392 1280.9989839997143 1281.649048998952 1282.5402840003371 1282.7451179996133 1283.3414320014417 1284.2103690002114 1284.2524829991162 1284.2756759990007 1284.5154630001634 1285.8650320004672 1286.5213629994541 1289.4136969987303 1289.493204999715 1289.493204999715 1289.8235679995269 1289.8258469998837 1290.0618089996278 1291.1214610002935 1292.1408699993044 1292.7724210005254 1293.0066739991307 1293.119222998619 1293.2361249998212 1293.4382330011576 1293.7029630001634 1295.645223999396 1295.903036000207 1295.903036000207 1295.9752609990537 1296.5313319992274 1297.2178150005639 1297.5570880006999 1299.1934009995311 1299.2541910000145 1299.9216729998589 1302.0761320013553 1303.0952160004526 1303.3347180001438 1303.8124200012535 1304.0484619997442 1306.4924730006605 1306.5323900002986 1307.8462330009788 1308.9746920000762 1309.3343509994447 1309.4140219986439 1309.4140219986439 1309.7609860002995 1310.173096999526 1310.9499120004475 1311.7178550008684 1312.0454110000283 1313.1240240000188 1314.110353000462 1315.6622320003808 1316.3188070002943 1316.5920419991016 1316.8771170005202 1317.5375979989767 1317.5866290014237 1318.3805750012398 1318.391194999218 1318.423218999058 1322.5029300004244 1322.5029300004244 1322.5184330008924 1323.1702069994062 1323.4433599989861 1323.6519370004535 1325.1966970004141 1325.723022999242 1326.5276699997485 1330.991496000439 1331.102336999029 1331.2866620011628 1331.9409999996424 1336.7760019991547 1339.7128100004047 1339.7128100004047 1340.9801439996809 1341.272867999971 1341.4550780002028 1343.8179129995406 1343.9568290002644 1344.0617279987782 1345.6505539994687 1345.6505539994687 1347.3707689996809 1349.8450119998306 1351.4471850004047 1356.0222169999033 1360.9111739993095 1361.5860609989613 1361.5860609989613 1363.6981199998409 1363.6981199998409 1364.7305100001395 1366.7637949995697 1372.5648200009018 1375.2872320003808 1381.1306970007718 1385.6618659999222 1390.9162189997733 1396.1871349997818 1400.894654000178 1410.843791000545 1413.0216479990631 1417.0911870002747

Current
Mean: 1243.862 ms
Stdev: 69.294 ms (5.6%)
Runs: 1060.7760830000043 1063.707397999242 1064.5553799998015 1067.807414000854 1068.7141529992223 1070.793091000989 1071.1266280002892 1071.7261150013655 1073.0765380002558 1075.8762209992856 1076.7751870006323 1078.9465330000967 1079.1928719989955 1086.1899420004338 1089.1677660010755 1092.012043999508 1099.6870530005544 1105.0326739996672 1112.9110110010952 1114.1542159989476 1116.6198330000043 1117.7239180002362 1121.476847998798 1123.1346029993147 1124.5457359999418 1124.821940999478 1125.7910969983786 1131.8036710005254 1131.894491000101 1132.0457359999418 1134.9394940007478 1141.3666190002114 1144.4493009988219 1146.4344890005887 1148.7451590001583 1149.1455080006272 1149.50761000067 1150.4507649987936 1151.7648120000958 1153.0998129993677 1154.066609999165 1154.8470459990203 1155.6905109994113 1157.1212569996715 1158.591105999425 1159.937663000077 1160.6450200006366 1162.0266939997673 1162.2867840006948 1163.0616049990058 1164.6802580002695 1164.7409680001438 1164.8069259990007 1164.8843189999461 1165.559407999739 1169.55904099904 1169.6771649997681 1170.7941900007427 1171.106567999348 1171.1390380002558 1172.2598879989237 1172.5438230000436 1172.9805509988219 1174.16723700054 1174.6527919992805 1175.1111660003662 1176.8378909993917 1176.859496999532 1177.062704000622 1178.0699869990349 1179.0967619996518 1179.25956299901 1179.2997239995748 1179.7244470007718 1180.1377360001206 1180.2276619989425 1181.887817999348 1182.1909589990973 1182.578288000077 1182.6879079993814 1184.332764999941 1184.9469820000231 1185.4650069996715 1185.4829110000283 1185.4966639988124 1186.2822670005262 1187.4548349995166 1188.5101319998503 1189.15161200054 1189.2674160003662 1189.3370370008051 1189.9542650002986 1190.7129319999367 1190.887085000053 1191.024454999715 1191.210694000125 1191.2751059997827 1191.7927659992129 1192.0529379993677 1192.0638839993626 1192.4676510002464 1193.3779709991068 1193.5384529996663 1193.6856699995697 1194.8401289992034 1194.9088540002704 1195.184407999739 1195.5983480010182 1195.8076170012355 1195.9860440008342 1196.231324000284 1196.8537189997733 1197.785320000723 1198.67871100083 1198.8752039987594 1199.098063999787 1199.6085620000958 1199.6551520004869 1199.769206000492 1199.8011070005596 1200.2688809987158 1201.3760989997536 1201.3957119993865 1201.6466070003808 1202.2151289992034 1202.3170979991555 1202.969645999372 1203.0411390010267 1203.2878419999033 1204.2435719985515 1204.77787300013 1205.3481849990785 1206.1206059996039 1206.4055989999324 1206.4931240007281 1206.5612400006503 1206.8118500001729 1207.2494309991598 1207.8947359994054 1208.3692629989237 1208.644369000569 1208.6966970004141 1209.3602300006896 1210.1131599992514 1211.1563729997724 1211.5292159989476 1211.7368570007384 1211.8376070000231 1212.7093100007623 1213.025024998933 1213.0871990006417 1213.3125819992274 1213.507284000516 1213.60205199942 1214.393758000806 1214.5093179997057 1214.5297849997878 1214.7339280005544 1215.7536629997194 1215.789592999965 1215.8072519991547 1216.0996920000762 1216.6944180000573 1217.2803140003234 1217.449504001066 1218.0493579991162 1218.446086999029 1219.0884610004723 1219.1191000007093 1219.8115650005639 1220.0550130009651 1220.3329680003226 1221.0525719989091 1221.1470139995217 1221.6690270006657 1221.7608640007675 1221.8382169995457 1221.9620779994875 1222.0242519993335 1222.8057460002601 1223.009277999401 1223.019491000101 1223.3917239997536 1223.9359140004963 1224.4555259998888 1224.9581709988415 1225.1692709997296 1225.2567549999803 1225.5085049998015 1225.6174730006605 1225.8789060004056 1225.9530439991504 1225.9867759998888 1226.1332200001925 1227.32621399872 1227.4042569994926 1227.4658619984984 1227.4895840007812 1227.7678640000522 1227.961222998798 1228.2297770008445 1228.2894700001925 1229.5220139995217 1229.6204020008445 1229.9248059988022 1230.0644950009882 1230.0644950009882 1230.519043000415 1231.0678310003132 1231.3105890005827 1231.7264809999615 1231.7767340000719 1231.965616999194 1232.2360030002892 1232.397541999817 1232.4425870012492 1232.5570069998503 1232.8503840006888 1232.8942870013416 1233.156860999763 1233.5478109996766 1233.9544679988176 1234.0670980010182 1234.238769998774 1234.4484049994498 1234.5916349999607 1234.8500980008394 1235.1048189997673 1236.2983400002122 1236.4557299986482 1236.8026529997587 1237.332560999319 1238.4541830010712 1239.6418869998306 1240.5995690003037 1240.6892910003662 1240.991291999817 1241.0120449997485 1241.1648769993335 1241.7184250000864 1241.9129649996758 1242.0792239997536 1242.516031999141 1242.5843510013074 1242.7857259996235 1243.227742999792 1243.2881279997528 1243.35945700109 1243.5720220003277 1243.5799969993532 1243.898520000279 1243.9837250001729 1244.2421059999615 1244.4572359994054 1244.4572359994054 1244.4868169985712 1244.6909999996424 1244.8208009991795 1245.3028970006853 1245.6274829991162 1246.6240650005639 1247.2004400007427 1247.4379070010036 1247.4379070010036 1248.3333339989185 1248.53955199942 1249.1250009983778 1249.5458990000188 1249.8465989995748 1249.9434000011533 1249.9434000011533 1250.4984949994832 1250.5683190003037 1250.7038979995996 1250.7294120006263 1251.5142419990152 1251.6374109983444 1251.70727599971 1251.7305100001395 1252.5137940011919 1252.5576999988407 1252.6152759995311 1252.7131759990007 1252.9051519986242 1253.2014579996467 1253.4490970000625 1254.3737800009549 1254.891277000308 1255.148398000747 1255.148398000747 1256.0062260013074 1256.644897999242 1256.9525969997048 1256.9860439989716 1257.2742519993335 1258.1321619991213 1258.3737390004098 1258.3946139998734 1258.5461429990828 1259.2129309996963 1259.281169001013 1259.4490159992129 1259.5149739999324 1259.910279000178 1260.247803999111 1260.387858999893 1260.527060000226 1260.7469080016017 1260.7469080016017 1260.7664800006896 1260.9151619989425 1261.1435150001198 1261.3995779994875 1261.4337169993669 1261.581299001351 1262.4063729997724 1262.4063729997724 1262.593506000936 1263.3519289996475 1263.5290120001882 1263.7595220003277 1263.9958500005305 1265.1888440009207 1265.4118249993771 1265.9989829994738 1266.0544439982623 1266.6093760002404 1267.3628749996424 1267.8180340006948 1267.828777000308 1267.8881030008197 1268.2869879994541 1268.8297940008342 1268.9141439981759 1269.0371909998357 1269.0491949990392 1269.087280999869 1269.4423420000821 1269.9957280009985 1270.106445999816 1272.2405190002173 1272.5128180012107 1273.1458740010858 1273.5859779994935 1274.1648770011961 1274.218343000859 1275.0985519997776 1275.1517740003765 1275.5487479995936 1275.8809820003808 1276.750406999141 1276.750406999141 1276.891642998904 1277.226888999343 1277.5351979993284 1277.5351979993284 1277.7566340006888 1278.10530600138 1278.1545009985566 1278.4053959995508 1278.88598700054 1280.613647999242 1280.655843000859 1280.7561849988997 1280.7826340012252 1280.8205159995705 1280.8288979995996 1281.1264650002122 1281.375854998827 1281.4242759998888 1282.8893640004098 1282.9555270001292 1284.4179289992899 1285.105754001066 1285.6853439994156 1286.3973799999803 1286.3990890011191 1286.6959639992565 1287.0207120012492 1287.2071949988604 1287.8262130003422 1288.5582679994404 1288.7919110003859 1288.8846439998597 1289.3687350004911 1290.7248539999127 1291.0931809991598 1292.8068450000137 1293.9276129994541 1294.378987999633 1294.3999840002507 1295.5703529994935 1295.844482999295 1296.4188640005887 1296.824421999976 1297.5415850002319 1297.5633140001446 1298.1850190013647 1298.3972990009934 1299.2601319998503 1299.5401610005647 1300.9925950001925 1300.9925950001925 1300.995199000463 1302.825602998957 1304.5483809988946 1304.5483809988946 1305.405680000782 1305.5292969997972 1306.055867999792 1307.4929609987885 1307.4943860005587 1309.0364999994636 1311.335165001452 1311.335165001452 1311.3533950001001 1314.6502689998597 1315.106813000515 1315.7822270002216 1315.9321699999273 1315.9321699999273 1316.2459319997579 1316.512369999662 1317.1632489990443 1318.7812909986824 1320.527303000912 1321.6867279987782 1322.9342049993575 1325.7692070007324 1326.749836999923 1327.417441001162 1329.5334479995072 1331.410970998928 1331.9549570009112 1332.4145509991795 1332.442870998755 1333.5328780002892 1333.5328780002892 1334.4233809988946 1334.4233809988946 1336.8326009996235 1337.0725110005587 1337.0725110005587 1338.9620779994875 1340.0348719991744 1340.1664639990777 1340.2326670009643 1341.278199000284 1341.387737000361 1341.387737000361 1341.4233399983495 1341.5043950006366 1342.6279299985617 1343.4267579987645 1343.9985360000283 1350.5635580010712 1351.2401940003037 1351.3948169983923 1353.3331300001591 1354.1814380008727 1357.2543950006366 1357.450278000906 1357.450278000906 1357.753866000101 1357.953979998827 1358.586833000183 1363.9580080006272 1364.8569339998066 1366.3693850003183 1368.071003999561 1375.1919760014862 1375.4712729994208 1379.4781899992377 1379.4781899992377 1381.777994999662 1383.710124000907 1386.7762870006263 1387.1330570001155 1391.2860519997776 1391.378581000492 1392.7910160012543 1395.92602599971 1400.6815190017223 1401.4818120002747 1402.0338960010558 1405.9716400001198 1410.5387780014426 1411.1078289989382 1417.4784350004047 1418.6270750015974 1418.6550709996372 1419.882895000279
Open search router TTI (CPU) Baseline
Mean: 145.998 %
Stdev: 4.717 % (3.2%)
Runs: 135.2019519089316 135.4023715504959 138.49372082521057 138.8135067359656 139.03450052548615 139.78082066590096 140.08825255221996 140.16989360964354 140.29836579701933 141.3283649714867 141.8088101580385 141.83042443311848 141.95324282756732 142.9140616751131 143.19957491337343 143.68819553107213 143.73374933833944 143.74767512008762 143.7818694116156 143.84812891344967 143.9428257235309 144.08197657849294 144.27182652463256 144.4726244613311 144.4975173707461 145.14263249798066 145.21610770791526 145.2664114838928 145.29041400727144 145.54517816459966 145.58535513845476 145.82202185858367 146.009953584059 146.11711046942398 146.16321459409548 147.37779121562917 147.5661416579287 148.30321415947026 148.55798115204936 148.7946024980429 148.8769237168493 149.00117690876772 149.0675394769957 149.22314498863736 149.61208817134317 149.61293092476987 149.73509823114068 149.9424557680805 150.22941727991687 150.53505659430195 150.61961162053305 150.6548312005354 150.74603948792176 150.94115454240256 151.3927949244709 151.53171157573124 152.50988263343422 152.7585701283494 157.22143333472417 158.52649826027871

Current
Mean: 146.484 %
Stdev: 3.785 % (2.6%)
Runs: 138.70945177312888 140.32648494856718 140.38941135773715 140.6852635410543 141.76553907689743 141.8464476901353 142.04465444904406 142.69047405581568 142.85496202707964 142.88956294691658 142.92946162179194 143.2025854609798 143.2257046917282 143.28009115292713 143.39942007623662 143.49207585021526 143.89266889523697 143.89461639784204 144.08892619520807 144.34524457753574 144.75721963900136 144.90152744306408 144.93274957130745 145.08525493769577 145.17015957802073 145.2702587623863 145.43522094937376 145.45733589331587 145.47992047713723 145.78556029469055 145.81025204644362 146.01611027634394 146.09736178272024 146.82891839455812 146.9184462392185 146.99287658983314 147.18786482748797 147.62720754189408 147.79270160201528 148.02674764500964 148.33701363448532 148.4601592005089 148.56081176145275 148.83609869702667 148.91222813337475 149.25571542469646 149.80127679714488 149.81900745155286 149.94915661015403 150.2745861453937 150.3280268246644 150.35909509458057 150.92157363331305 151.36112339380776 152.1705926001372 152.50765773475504 153.75299886801125 153.86028269411804 154.17566275648636 155.8998125207768
Open search router TTI (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (7/14)

Meaningless Changes To Duration (6/13)

Show entries
Name Duration
App start time nativeLaunch 23.446 ms → 24.390 ms (+0.943 ms, +4.0%)
App start time appCreation 69.534 ms → 71.683 ms (+2.149 ms, +3.1%)
App start time appCreationEnd_To_contentAppeared 516.217 ms → 508.186 ms (-8.030 ms, -1.6%)
App start time nativeLaunchEnd_To_appCreationStart 80.310 ms → 80.140 ms (-0.170 ms, ±0.0%)
App start time runJsBundle 320.271 ms → 321.400 ms (+1.129 ms, ±0.0%)
App start time regularAppStart 0.022 ms → 0.021 ms (-0.000 ms, -1.6%)
App start time (CPU) 144.741 % → 146.397 % (+1.656 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.392 MB → 384.278 MB (+0.886 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 24.458 % → 25.259 % (+0.801 %, +3.3%)
Open search router TTI Load Search Options 134.434 ms → 136.261 ms (+1.827 ms, +1.4%)
Open search router TTI Open Search Router TTI 1209.840 ms → 1243.862 ms (+34.022 ms, +2.8%)
Open search router TTI (CPU) 145.998 % → 146.484 % (+0.486 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 407.128 MB → 408.156 MB (+1.027 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.352 % → 25.203 % (-0.148 %, -0.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 488.881 ms → 489.055 ms (+0.174 ms, ±0.0%)
Report typing (CPU) 95.212 % → 95.335 % (+0.123 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 475.332 MB → 475.423 MB (+0.091 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.566 % → 20.463 % (-0.103 %, -0.5%)
Chat opening Chat TTI 717.497 ms → 727.543 ms (+10.046 ms, +1.4%)
Chat opening (CPU) 160.918 % → 160.617 % (-0.302 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 399.775 MB → 399.688 MB (-0.086 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.541 % → 32.297 % (-1.244 %, -3.7%)
Money request - Open Manual Tracking 141.061 ms → 135.632 ms (-5.429 ms, -3.8%)
Money request - Open Contacts 228.145 ms → 222.454 ms (-5.691 ms, -2.5%)
Money request - Open Create 141.602 ms → 138.018 ms (-3.584 ms, -2.5%)
Money request (CPU) 178.959 % → 178.599 % (-0.361 %, ±0.0%)
Money request (FPS) 59.317 FPS → 59.276 FPS (-0.041 FPS, ±0.0%)
Money request (RAM) 470.488 MB → 470.058 MB (-0.431 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.378 % → 44.595 % (+0.217 %, ±0.0%)
Show details
Name Duration
Open search router TTI (RAM) Baseline
Mean: 407.128 MB
Stdev: 5.023 MB (1.2%)
Runs: 395.709375 396.1109375 397.621875 398.44140625 398.68359375 399.9828125 400.28515625 401.3216145833333 401.3953125 401.66953125 401.7076822916667 402.314453125 402.94453125 403.13671875 403.3544921875 404.2078125 404.3546875 405.125 405.2515625 405.69375 406.165625 406.2220052083333 406.3015625 406.3828125 406.4951171875 406.4953125 406.529296875 406.66484375 406.80625 406.8815104166667 407.24140625 407.52421875 407.96953125 408.49296875 408.7875 408.95703125 409.169921875 409.3880208333333 409.63203125 409.759375 409.8828125 409.978125 410.27890625 410.28984375 410.9046875 411.26484375 411.62109375 411.640625 411.72890625 411.91875 412.4375 413.30546875 413.44765625 413.690625 414.990625 415.21875 415.4329427083333 415.54453125 415.81953125

Current
Mean: 408.156 MB
Stdev: 4.347 MB (1.1%)
Runs: 398.703125 398.8515625 399.9828125 400.0260416666667 400.93828125 401.8375 402.08828125 402.6875 403.0703125 403.95625 404.16171875 404.221875 404.474609375 404.59765625 404.96875 405.13515625 405.51171875 405.6396484375 405.6920572916667 406.490625 406.509765625 406.51875 406.529296875 406.845703125 406.93671875 407.25234375 407.35703125 408.4462890625 408.5515625 408.71015625 408.8697916666667 408.88359375 409.150390625 409.1868489583333 409.38984375 409.4421875 409.590625 409.7734375 409.9375 410.478125 410.6419270833333 410.6529947916667 410.951171875 411.3203125 412.0796875 412.12734375 412.39609375 412.6432291666667 412.6734375 412.72265625 412.890625 412.9674479166667 413.11953125 413.134375 413.25234375 413.89609375 414.0515625 414.85625 415.6510416666667 415.92265625
Open search router TTI (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Open search router TTI (CPU/UI) Baseline
Mean: 25.352 %
Stdev: 1.580 % (6.2%)
Runs: 21.8 22.6 23 23.2 23.3 23.4 23.5 23.6 23.9 23.9 23.9 23.9 24 24 24.2 24.3 24.3 24.3 24.4 24.6 24.7 24.7 24.7 24.7 24.7 24.8 24.9 24.9 25 25 25.2 25.2 25.4 25.4 25.4 25.4 25.5 25.7 25.9 25.9 26.1 26.2 26.3 26.3 26.4 26.4 26.6 26.7 26.8 27.2 27.2 27.2 27.3 27.5 27.6 27.9 28.1 28.3 28.4 29.4

Current
Mean: 25.203 %
Stdev: 1.460 % (5.8%)
Runs: 22.2 22.3 23 23 23.1 23.1 23.4 23.4 23.6 23.8 23.9 23.9 24.1 24.2 24.2 24.2 24.3 24.3 24.3 24.4 24.4 24.6 24.6 24.6 24.7 24.7 24.8 24.8 25 25 25.4 25.6 25.6 25.7 25.8 25.8 25.9 25.9 26 26 26.1 26.1 26.1 26.1 26.2 26.2 26.2 26.3 26.3 26.3 26.6 26.8 27.1 27.2 27.3 27.4 27.8 28.4 28.9

Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (8/14)

Meaningless Changes To Duration (7/13)

Show entries
Name Duration
App start time nativeLaunch 23.446 ms → 24.390 ms (+0.943 ms, +4.0%)
App start time appCreation 69.534 ms → 71.683 ms (+2.149 ms, +3.1%)
App start time appCreationEnd_To_contentAppeared 516.217 ms → 508.186 ms (-8.030 ms, -1.6%)
App start time nativeLaunchEnd_To_appCreationStart 80.310 ms → 80.140 ms (-0.170 ms, ±0.0%)
App start time runJsBundle 320.271 ms → 321.400 ms (+1.129 ms, ±0.0%)
App start time regularAppStart 0.022 ms → 0.021 ms (-0.000 ms, -1.6%)
App start time (CPU) 144.741 % → 146.397 % (+1.656 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.392 MB → 384.278 MB (+0.886 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 24.458 % → 25.259 % (+0.801 %, +3.3%)
Open search router TTI Load Search Options 134.434 ms → 136.261 ms (+1.827 ms, +1.4%)
Open search router TTI Open Search Router TTI 1209.840 ms → 1243.862 ms (+34.022 ms, +2.8%)
Open search router TTI (CPU) 145.998 % → 146.484 % (+0.486 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 407.128 MB → 408.156 MB (+1.027 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.352 % → 25.203 % (-0.148 %, -0.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 488.881 ms → 489.055 ms (+0.174 ms, ±0.0%)
Report typing (CPU) 95.212 % → 95.335 % (+0.123 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 475.332 MB → 475.423 MB (+0.091 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.566 % → 20.463 % (-0.103 %, -0.5%)
Chat opening Chat TTI 717.497 ms → 727.543 ms (+10.046 ms, +1.4%)
Chat opening (CPU) 160.918 % → 160.617 % (-0.302 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 399.775 MB → 399.688 MB (-0.086 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.541 % → 32.297 % (-1.244 %, -3.7%)
Money request - Open Manual Tracking 141.061 ms → 135.632 ms (-5.429 ms, -3.8%)
Money request - Open Contacts 228.145 ms → 222.454 ms (-5.691 ms, -2.5%)
Money request - Open Create 141.602 ms → 138.018 ms (-3.584 ms, -2.5%)
Money request (CPU) 178.959 % → 178.599 % (-0.361 %, ±0.0%)
Money request (FPS) 59.317 FPS → 59.276 FPS (-0.041 FPS, ±0.0%)
Money request (RAM) 470.488 MB → 470.058 MB (-0.431 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.378 % → 44.595 % (+0.217 %, ±0.0%)
Show details
Name Duration
Report typing Composer typing rerender count Baseline
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

Current
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Report typing Message sent Baseline
Mean: 488.881 ms
Stdev: 28.849 ms (5.9%)
Runs: 418.0385739989579 435.3656009994447 439.3358559999615 443.172038000077 443.4048259984702 445.53125 447.7928869985044 451.0640869997442 451.0826409999281 453.83772799931467 453.86116599850357 454.109375 456.68249499984086 457.3859059996903 467.79931600019336 471.66011600010097 472.35660899989307 477.8501789998263 479.24955300055444 481.18758200109005 481.653523998335 481.7843430005014 482.97330700047314 485.64819300174713 486.52864599972963 487.612956000492 488.64514200016856 488.7159010004252 489.17525199986994 489.67480400018394 490.08858199976385 490.91833500005305 493.3313400000334 493.3914800006896 494.563639998436 494.71810000017285 494.793700998649 497.06734200008214 501.88151100091636 504.7008459996432 504.79610300064087 506.3055830001831 513.597616000101 515.7672930005938 517.0876059997827 517.3926599994302 517.4045820012689 517.812989000231 518.6269130017608 522.406086999923 522.5258799996227 523.0083820000291 523.7006440013647 525.6328130010515 525.812947999686 525.9702150002122 527.2594400011003 527.9491780009121 528.3642169982195 532.8079019989818

Current
Mean: 489.055 ms
Stdev: 25.309 ms (5.2%)
Runs: 429.34358800016344 435.8605550006032 436.00183099880815 443.8208820000291 444.3246260005981 445.3024899996817 455.078083999455 458.4273680001497 458.91670699976385 465.37154199928045 466.6027429997921 467.7729080002755 475.7733970005065 476.3257660008967 476.87760400027037 479.3666179999709 480.7235930003226 482.58504300005734 482.9945069998503 483.2042239997536 483.4775799997151 484.0945640001446 484.484944999218 485.238160001114 485.34550000168383 486.5155840013176 486.875284999609 488.35493999905884 488.58439199998975 491.0573740005493 491.33101399987936 492.83748399838805 493.27323399856687 493.7947190012783 494.0063479989767 494.2191160004586 495.17842600122094 495.5266520008445 496.81595900096 498.21777300164104 498.82438199967146 501.18408199958503 501.5620529986918 502.0928549990058 502.8769129998982 502.922038000077 503.46236100047827 507.421753000468 508.86226399987936 517.878581000492 518.6517740003765 523.1350910011679 523.9902750011533 524.2087810002267 527.5956619996578 528.5025229994208 530.6181639991701 532.9265139997005 543.6152339987457
Report typing (CPU) Baseline
Mean: 95.212 %
Stdev: 4.178 % (4.4%)
Runs: 87.53740552932342 88.12091864529327 88.83365798283393 89.13174127016285 89.23731145943144 89.52432632503064 89.95501668799554 89.98595672635713 90.52640667961451 90.59874246064365 90.86534813449414 91.53173803065611 91.56495002653311 92.00651036703546 92.03187464717162 92.24364085577744 92.37708353304191 92.46073368098081 92.71713978854186 92.95744552573836 93.06922698492967 93.29411371520915 93.36430533085517 93.77888048715165 94.0071645121611 94.30034632437668 94.50275199872897 94.69787494770027 94.80744571102564 95.20001442616586 95.39427249362527 95.55452703840055 95.69631905656071 95.72289567165939 95.75805745277948 96.09019320252288 96.48753262970136 96.70625007386724 96.80992357956588 97.41410353956815 97.43868055000583 97.78514841604591 98.26552126386177 98.38864081937848 98.65156983098879 99.14279686080384 99.15799546094627 99.82783583406437 100.63626518023298 100.84050517812892 100.87230855522303 100.91859190346622 101.03321673634721 101.23878872997099 101.5007468711372 102.36465923614396 102.65664154434756 104.71241395853379

Current
Mean: 95.335 %
Stdev: 4.685 % (4.9%)
Runs: 88.46103009721965 89.02312499455098 89.07510025697884 89.25869177684534 89.41872673951403 89.7414626510374 89.78107823812626 90.16082479220023 90.77014918207585 91.19288730784635 91.24412596382444 91.65738372989838 91.69457422076738 91.85130955217454 92.01718414249208 92.10886633869269 92.14774831067139 92.26924103487266 92.27683336545707 92.39725718489467 92.4703518113245 92.61713275677006 92.73861922021318 93.19381921932336 93.32433011791042 93.43888221798818 93.85038516992107 93.91826363445904 93.98681990452627 94.17487890241078 94.20681636665012 94.23277964789757 94.43255279395247 94.4466158005935 94.7611533031914 94.85086523214228 95.26817415035151 95.51848982203965 96.29704320406458 96.99486662643304 97.79629778825549 98.1719393124648 98.40244937115666 99.15343186044676 99.24121697701877 99.26626335031692 99.28309583573147 99.34162409698493 99.83678479727956 100.47816064918234 100.69367123927665 101.39698354227707 101.68957667751224 102.44862438280548 104.20480479176535 104.46926412140532 104.79070912656319 105.05054820245896 107.80509241547604

Copy link
Contributor

github-actions bot commented May 7, 2025

Performance Comparison Report 📊 (9/14)

Meaningless Changes To Duration (8/13)

Show entries
Name Duration
App start time nativeLaunch 23.446 ms → 24.390 ms (+0.943 ms, +4.0%)
App start time appCreation 69.534 ms → 71.683 ms (+2.149 ms, +3.1%)
App start time appCreationEnd_To_contentAppeared 516.217 ms → 508.186 ms (-8.030 ms, -1.6%)
App start time nativeLaunchEnd_To_appCreationStart 80.310 ms → 80.140 ms (-0.170 ms, ±0.0%)
App start time runJsBundle 320.271 ms → 321.400 ms (+1.129 ms, ±0.0%)
App start time regularAppStart 0.022 ms → 0.021 ms (-0.000 ms, -1.6%)
App start time (CPU) 144.741 % → 146.397 % (+1.656 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.392 MB → 384.278 MB (+0.886 MB, ±0.0%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 24.458 % → 25.259 % (+0.801 %, +3.3%)
Open search router TTI Load Search Options 134.434 ms → 136.261 ms (+1.827 ms, +1.4%)
Open search router TTI Open Search Router TTI 1209.840 ms → 1243.862 ms (+34.022 ms, +2.8%)
Open search router TTI (CPU) 145.998 % → 146.484 % (+0.486 %, ±0.0%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 407.128 MB → 408.156 MB (+1.027 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 25.352 % → 25.203 % (-0.148 %, -0.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 488.881 ms → 489.055 ms (+0.174 ms, ±0.0%)
Report typing (CPU) 95.212 % → 95.335 % (+0.123 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 475.332 MB → 475.423 MB (+0.091 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 20.566 % → 20.463 % (-0.103 %, -0.5%)
Chat opening Chat TTI 717.497 ms → 727.543 ms (+10.046 ms, +1.4%)
Chat opening (CPU) 160.918 % → 160.617 % (-0.302 %, ±0.0%)
Chat opening (FPS) 60.000 FPS → 60.000 FPS
Chat opening (RAM) 399.775 MB → 399.688 MB (-0.086 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 33.541 % → 32.297 % (-1.244 %, -3.7%)
Money request - Open Manual Tracking 141.061 ms → 135.632 ms (-5.429 ms, -3.8%)
Money request - Open Contacts 228.145 ms → 222.454 ms (-5.691 ms, -2.5%)
Money request - Open Create 141.602 ms → 138.018 ms (-3.584 ms, -2.5%)
Money request (CPU) 178.959 % → 178.599 % (-0.361 %, ±0.0%)
Money request (FPS) 59.317 FPS → 59.276 FPS (-0.041 FPS, ±0.0%)
Money request (RAM) 470.488 MB → 470.058 MB (-0.431 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 44.378 % → 44.595 % (+0.217 %, ±0.0%)
Show details
Name Duration
Report typing (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Report typing (RAM) Baseline
Mean: 475.332 MB
Stdev: 5.177 MB (1.1%)
Runs: 462.98916903409093 463.7674851190476 465.18856534090907 467.0862926136364 467.219140625 468.3765980113636 469.39346590909093 469.80283717105266 469.81875 471.335546875 471.4527698863636 471.60135690789474 471.89375 472.16484375 472.3245738636364 472.4837582236842 472.49715909090907 472.54520089285717 472.5843394886364 472.60621279761904 473.17098721590907 473.275390625 473.49360795454544 473.54545454545456 473.6365411931818 473.9705078125 474.1490234375 475.1221217105263 475.3784950657895 475.4085582386364 475.57084517045456 475.8169921875 476.0623224431818 476.40699404761904 476.46360085227275 476.78622159090907 476.9203125 477.4214638157895 477.6587890625 477.8457961309524 477.8591974431818 478.04012784090907 478.10617897727275 478.3515625 478.98881392045456 479.04605263157896 479.11434659090907 479.331640625 479.840625 479.93678977272725 481.0768229166667 481.10423519736844 481.1903782894737 482.5955078125 483.72879464285717 483.95394736842104 484.1099917763158 486.3818359375 486.578125

Current
Mean: 475.423 MB
Stdev: 4.357 MB (0.9%)
Runs: 464.32421875 469.03794642857144 470.2643229166667 470.48544034090907 470.5084292763158 470.6322265625 470.7072088068182 470.7079613095238 470.9376775568182 471.029296875 471.4552556818182 471.7833984375 471.7986505681818 471.8431640625 471.887890625 472.23490767045456 472.25639204545456 472.68203125 472.70205965909093 473.0252130681818 473.13760653409093 473.49946732954544 473.55024857954544 473.81960227272725 473.837890625 474.1150568181818 474.5255681818182 474.9880859375 475.00319602272725 475.0204613095238 475.0706676136364 475.13448660714283 475.1974431818182 475.20383522727275 475.2248046875 475.5438988095238 476.4456676136364 476.718359375 476.74946732954544 476.7611328125 477.10813210227275 477.2384765625 478.619140625 478.7474609375 478.7578125 478.8359375 479.11953125 479.3384765625 479.8400390625 479.88991477272725 479.95045230263156 480.1542038690476 480.6443359375 480.7747395833333 480.99296875 481.7354029605263 484.41529605263156 485.667578125 488.24876644736844
Report typing (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Copy link
Contributor

github-actions bot commented May 7, 2025

@Expensify/mobile-deployers 📣 Please look into this performance regression as it's a deploy blocker.

@TMisiukiewicz
Copy link
Contributor Author

Derived values are calculated when the app starts, so they might affect TTI a bit. But to keep things small and testable, a few more PRs are coming that’ll swap out existing function calls with those computed in a derived value. That should help bring TTI back down. Examples:
#61376
#61586

Copy link
Contributor

github-actions bot commented May 8, 2025

🚀 Deployed to staging by https://github.com/mjasikowski in version: 9.1.42-0 🚀

platform result
🖥 desktop 🖥 success ✅
🕸 web 🕸 success ✅
🤖 android 🤖 success ✅
🍎 iOS 🍎 success ✅

Copy link
Contributor

github-actions bot commented May 9, 2025

🚀 Deployed to staging by https://github.com/mjasikowski in version: 9.1.43-5 🚀

platform result
🖥 desktop 🖥 success ✅
🕸 web 🕸 success ✅
🤖 android 🤖 success ✅
🍎 iOS 🍎 failure ❌

Copy link
Contributor

🚀 Deployed to production by https://github.com/francoisl in version: 9.1.44-8 🚀

platform result
🖥 desktop 🖥 success ✅
🕸 web 🕸 success ✅
🤖 android 🤖 failure ❌
🍎 iOS 🍎 success ✅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
DeployBlockerCash This issue or pull request should block deployment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants