Skip to content
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

[CP Staging] Make sure to check the navBarManager is defined #53165

Merged
merged 1 commit into from
Nov 26, 2024

Conversation

mountiny
Copy link
Contributor

@mountiny mountiny commented Nov 26, 2024

Explanation of Change

In hybridApp, when switching the experiences, the custom module is missing in hybrid app. We are going to add that tomorrow to the hybrid app, but to avoid the crashes in android, lets catch early when not available.

Fixed Issues

$ #53150
PROPOSAL:

Tests

  1. In hybridApp, open the app
  2. Sign in
  3. Change to New experrience
  • Verify that no errors appear in the JS console

Offline tests

N/A

QA Steps

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

  • 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 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 used JaimeGPT to get English > Spanish translation. I then posted it 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.ts 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: mWeb Safari
MacOS: Chrome / Safari
MacOS: Desktop

@mountiny mountiny requested a review from a team as a code owner November 26, 2024 19:52
@mountiny mountiny self-assigned this Nov 26, 2024
@melvin-bot melvin-bot bot requested a review from madmax330 November 26, 2024 19:52
Copy link

melvin-bot bot commented Nov 26, 2024

@madmax330 Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@melvin-bot melvin-bot bot removed the request for review from a team November 26, 2024 19:52
Copy link
Contributor

@luacmartins luacmartins left a comment

Choose a reason for hiding this comment

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

LGTM

@luacmartins
Copy link
Contributor

luacmartins commented Nov 26, 2024

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible 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 checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified tests pass on all platforms & I tested again on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified proper code patterns were followed (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 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
    • 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 verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • 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.ts or at the top of the file that uses the constant) are defined as such
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • 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.
  • For any bug fix or new feature in this PR, I verified that sufficient unit tests are included to prevent regressions in this 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.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari
MacOS: Desktop

@luacmartins luacmartins merged commit d69518c into main Nov 26, 2024
17 of 18 checks passed
@luacmartins luacmartins deleted the vit-53150 branch November 26, 2024 20:09
OSBotify pushed a commit that referenced this pull request Nov 26, 2024
[CP Staging] Make sure to check the navBarManager is defined

(cherry picked from commit d69518c)

(CP triggered by mountiny)
@github-actions github-actions bot added the CP Staging marks PRs that have been CP'd to staging label Nov 26, 2024
@OSBotify
Copy link
Contributor

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

Copy link
Contributor

🚀 Cherry-picked to staging by https://github.com/mountiny in version: 9.0.67-1 🚀

platform result
🤖 android 🤖 false ❌
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 success ✅
🤖🔄 android HybridApp 🤖🔄 success ✅
🍎🔄 iOS HybridApp 🍎🔄 success ✅

@Expensify/applauseleads please QA this PR and check it off on the deploy checklist if it passes.

@github-actions github-actions bot added the DeployBlockerCash This issue or pull request should block deployment label Nov 26, 2024
Copy link
Contributor

Performance Comparison Report 📊

Significant Changes To Duration

Name Duration
Linking 794.461 ms → 970.600 ms (+176.139 ms, +22.2%) 🔴
Show details
Name Duration
Linking Baseline
Mean: 794.461 ms
Stdev: 47.461 ms (6.0%)
Runs: 625.7474779998884 712.2331139994785 727.0959069998935 747.129435999319 750.6567789996043 751.3597009992227 752.2049159994349 754.5314950002357 757.9500740002841 760.4212239999324 762.2428789995611 762.2843019999564 763.8992110006511 764.5406909994781 766.2746179997921 772.6236579995602 772.8393560005352 773.1658540004864 773.5324710002169 775.0886639999226 779.1341150002554 780.5609939992428 782.0170489996672 784.887980999425 785.0174560006708 785.1877039996907 787.4678560001776 789.7121180007234 791.2384029999375 792.281697999686 795.3389079999179 795.4988200003281 795.9639090001583 797.3601890001446 797.7378340000287 798.1333420006558 800.5814619995654 801.0992439994588 803.3568120002747 804.7458910001442 808.2800289997831 808.9083659993485 810.0107829999179 810.6008710004389 812.978027000092 813.394980000332 813.6924649998546 815.6170250000432 816.8494060002267 824.7171229999512 833.6606040000916 834.310792000033 834.4036870002747 841.1036790004 842.6177980005741 848.9919839994982 860.9761159997433 862.6949469996616 921.6200359994546 979.0627039996907

Current
Mean: 970.600 ms
Stdev: 268.329 ms (27.6%)
Runs: 642.8995770001784 664.338134999387 684.9740800000727 737.3581960005686 752.9868980003521 753.7601319998503 756.7225350001827 759.3382160002366 764.4731450006366 767.1538499994203 767.188110999763 768.6623949995264 769.8238530000672 772.832601999864 780.6225180001929 780.6466470006853 782.6545000001788 783.1896570008248 783.65625 787.556967000477 788.4012860003859 788.4343270007521 789.8015139997005 790.9847820000723 791.1622320003808 791.4978839997202 791.6992999995127 792.9037269996479 793.5733239995316 794.5786139992997 794.7639570003375 797.625 799.7471109991893 799.9997969996184 801.0978189995512 807.0793460002169 807.0969240004197 809.359375 812.4479979993775 812.4673259994015 812.7389329997823 814.5624599996954 819.1332609998062 822.4657399998978 824.8695070007816 825.1371259996668 826.9543050006032 831.31018100027 836.9882810004056 837.4851890001446 845.2854410000145 853.8047289997339 857.9012049995363 859.2674970002845 882.03202399984 942.6899009998888 943.4099129997194 975.4451500000432 990.7375090001151 992.7871099999174 1268.862793999724 1284.5042329998687 1292.2185070002452 1310.273072000593 1311.5348720001057 1314.4799399999902 1315.7618010006845 1328.9153650002554 1328.9439300000668 1336.8940850002691 1340.7846280001104 1343.9466560008004 1344.7365319998935 1350.6281740004197 1362.8363849995658 1378.0851249992847 1403.3118090005592 1460.335898000747 1460.3931079991162 1467.9466160004959 1492.2550050001591 1522.1349299997091 1541.6255700001493 1558.3857429996133

Meaningless Changes To Duration

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 63.797 ms → 82.746 ms (+18.949 ms, +29.7%) 🟡
App start time nativeLaunch 32.276 ms → 25.414 ms (-6.862 ms, -21.3%) 🟢
App start time contentAppeared_To_screenTTI 638.013 ms → 634.067 ms (-3.946 ms, -0.6%)
App start time appCreation 83.267 ms → 83.883 ms (+0.617 ms, +0.7%)
App start time appCreationEnd_To_contentAppeared 627.820 ms → 670.880 ms (+43.060 ms, +6.9%)
App start time runJsBundle 450.233 ms → 472.467 ms (+22.233 ms, +4.9%)
App start time TTI 1444.454 ms → 1502.041 ms (+57.587 ms, +4.0%)
App start time regularAppStart 0.023 ms → 0.022 ms (-0.000 ms, -1.6%)
App start time (CPU) 131.179 % → 132.605 % (+1.425 %, +1.1%)
App start time (FPS) 60.000 FPS → 59.973 FPS (-0.027 FPS, ±0.0%)
App start time (RAM) 357.019 MB → 360.928 MB (+3.909 MB, +1.1%)
App start time (CPU/JS) 71.242 % → 69.454 % (-1.788 %, -2.5%)
App start time (CPU/UI) 26.853 % → 28.312 % (+1.459 %, +5.4%)
Open search router TTI Load Search Options 111.181 ms → 112.342 ms (+1.161 ms, +1.0%)
Open search router TTI Open Search Router TTI 607.813 ms → 603.339 ms (-4.473 ms, -0.7%)
Open search router TTI (CPU) 135.551 % → 134.865 % (-0.686 %, -0.5%)
Open search router TTI (FPS) 60.000 FPS → 60.000 FPS
Open search router TTI (RAM) 362.296 MB → 364.139 MB (+1.844 MB, +0.5%)
Open search router TTI (CPU/JS) 70.038 % → 70.195 % (+0.157 %, ±0.0%)
Open search router TTI (CPU/UI) 27.136 % → 26.697 % (-0.440 %, -1.6%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 433.492 ms → 435.517 ms (+2.025 ms, ±0.0%)
Report typing (CPU) 101.609 % → 101.884 % (+0.274 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 494.557 MB → 494.830 MB (+0.273 MB, ±0.0%)
Report typing (CPU/JS) 46.878 % → 47.202 % (+0.323 %, +0.7%)
Report typing (CPU/UI) 25.678 % → 25.805 % (+0.127 %, ±0.0%)
Chat opening Chat TTI 551.840 ms → 549.082 ms (-2.757 ms, ±0.0%)
Chat opening (CPU) 140.742 % → 143.206 % (+2.464 %, +1.8%)
Chat opening (FPS) 59.924 FPS → 60.000 FPS (+0.076 FPS, ±0.0%)
Chat opening (RAM) 370.777 MB → 381.725 MB (+10.948 MB, +3.0%)
Chat opening (CPU/JS) 69.772 % → 71.778 % (+2.007 %, +2.9%)
Chat opening (CPU/UI) 31.123 % → 31.161 % (+0.038 %, ±0.0%)
Linking (CPU) 149.750 % → 149.913 % (+0.162 %, ±0.0%)
Linking (FPS) 60.000 FPS → 60.000 FPS
Linking (RAM) 414.923 MB → 414.818 MB (-0.104 MB, ±0.0%)
Linking (CPU/JS) 79.989 % → 79.872 % (-0.117 %, ±0.0%)
Linking (CPU/UI) 30.412 % → 30.523 % (+0.112 %, ±0.0%)
Show details
Name Duration
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 63.797 ms
Stdev: 8.297 ms (13.0%)
Runs: 46 49 50 52 52 54 55 55 56 57 57 57 57 57 57 57 59 59 59 59 59 60 60 61 61 62 62 63 64 64 64 64 64 65 65 65 66 67 67 67 68 68 68 69 70 70 70 71 71 72 72 72 72 72 73 80 82 84 86

Current
Mean: 82.746 ms
Stdev: 10.453 ms (12.6%)
Runs: 62 64 66 68 69 69 70 71 71 71 73 73 74 75 75 77 77 78 78 78 79 80 80 80 80 80 80 80 81 81 82 82 82 83 83 84 85 86 86 87 87 87 88 89 90 91 91 92 94 94 94 95 95 95 99 100 104 105 112
App start time nativeLaunch Baseline
Mean: 32.276 ms
Stdev: 3.755 ms (11.6%)
Runs: 27 28 28 28 28 28 28 28 28 28 29 29 29 29 29 29 29 29 30 30 30 30 30 30 31 31 31 31 32 32 32 32 32 32 32 33 33 33 34 34 34 35 35 35 36 36 36 36 36 36 36 37 37 38 39 40 42 42

Current
Mean: 25.414 ms
Stdev: 4.214 ms (16.6%)
Runs: 21 21 21 21 21 21 21 21 21 22 22 22 22 22 22 22 23 23 23 23 23 23 23 24 24 24 24 24 24 24 24 24 24 24 24 25 25 25 25 26 26 27 27 28 29 29 29 30 30 30 32 32 33 33 34 35 35 37
App start time contentAppeared_To_screenTTI Baseline
Mean: 638.013 ms
Stdev: 58.053 ms (9.1%)
Runs: 499.16893499996513 530.0975679997355 549.1643759999424 555.4424270000309 564.5504769999534 569.7336179995909 574.6102019995451 583.4789270004258 587.6473300000653 598.114741999656 598.128097999841 599.4681369997561 599.8232819996774 601.427556999959 602.6269420003518 607.2564080003649 608.1807059999555 611.3397930003703 613.370697000064 613.439663999714 626.3809500001371 627.1495470004156 628.7987630004063 630.584809999913 638.6987730003893 642.352316999808 642.4813069999218 642.5282009998336 654.6029939996079 657.1309200003743 657.3649530000985 657.7632929999381 661.2849850002676 662.4414560003206 664.3237140001729 665.2566989995539 668.7817129995674 670.0050839995965 670.4830799996853 671.4010190004483 674.3528869999573 678.7959759999067 679.0194739997387 694.0904120001942 699.6279990002513 713.3942740000784 726.5870690001175 774.9604500001296 775.9851940004155 776.9675470003858

Current
Mean: 634.067 ms
Stdev: 56.775 ms (9.0%)
Runs: 530.1249089995399 544.4200830003247 549.906813999638 558.0165210003033 558.7369290003553 575.8189989998937 578.1653629997745 582.282584999688 589.2370980000123 590.7622109996155 595.2639180002734 596.8553710002452 597.86361700017 598.8126809997484 599.702856999822 603.7715699998662 606.0367580000311 607.9144500000402 608.3208779999986 614.4098580004647 617.5722460001707 618.6369880000129 619.1272910004482 621.0522750001401 621.9891529995948 623.2276440002024 628.5880190003663 629.4832020001486 629.7163310004398 631.0653489995748 632.4174239998683 633.4215059997514 635.9346430003643 636.5193849997595 636.6650090003386 639.0857140002772 639.7202850002795 650.9570540003479 662.4780949996784 663.8453660001978 671.8742329999804 675.069834000431 675.4507189998403 689.8902669996023 691.614501000382 701.0411809999496 706.4144069999456 720.8980040000752 750.7695429995656 758.8582039996982 783.4040660001338 788.295493000187
App start time appCreation Baseline
Mean: 83.267 ms
Stdev: 10.255 ms (12.3%)
Runs: 66 66 67 68 69 71 71 72 72 74 74 74 75 75 75 75 75 76 76 77 77 78 78 78 79 80 80 80 80 81 81 81 83 83 84 85 86 86 87 87 88 91 91 92 92 92 92 94 95 95 96 96 96 98 98 99 100 100 104 105

Current
Mean: 83.883 ms
Stdev: 9.957 ms (11.9%)
Runs: 63 67 69 69 69 72 72 72 72 73 73 74 75 75 76 76 76 77 79 79 80 80 81 81 82 82 83 83 83 84 84 85 85 85 86 86 86 87 87 87 88 88 89 89 89 90 90 91 92 93 95 96 97 98 99 99 100 102 103 110
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 627.820 ms
Stdev: 35.958 ms (5.7%)
Runs: 545 548 558 579 580 580 582 585 586 587 588 603 603 604 605 610 612 614 620 624 626 628 629 630 635 638 639 641 641 641 643 643 644 644 645 654 655 655 660 661 661 662 665 667 667 672 674 678 685 695

Current
Mean: 670.880 ms
Stdev: 23.667 ms (3.5%)
Runs: 613 615 621 632 632 633 638 644 646 656 658 658 659 660 661 662 663 667 668 670 670 671 671 671 672 672 673 675 677 679 680 684 685 685 685 686 688 689 690 691 691 695 696 696 697 698 699 702 710 710
App start time runJsBundle Baseline
Mean: 450.233 ms
Stdev: 24.982 ms (5.5%)
Runs: 389 396 402 408 408 410 415 420 420 422 423 428 428 428 433 436 436 438 440 440 441 442 443 448 448 449 452 452 453 455 456 456 457 457 458 460 461 461 464 465 465 466 466 466 468 469 469 470 472 472 472 476 477 479 480 484 486 487 492 500

Current
Mean: 472.467 ms
Stdev: 26.486 ms (5.6%)
Runs: 406 412 413 420 422 427 427 437 443 450 453 455 456 456 456 456 457 460 462 463 467 468 469 471 472 477 477 477 477 479 479 480 481 481 482 482 483 483 485 485 485 486 488 488 490 491 492 492 494 496 496 497 502 504 505 506 509 511 514 516
App start time TTI Baseline
Mean: 1444.454 ms
Stdev: 82.460 ms (5.7%)
Runs: 1248.1689349999651 1286.1643759999424 1305.0975679997355 1309.6473300000653 1319.733617999591 1322.4424270000309 1333.114741999656 1348.1807059999555 1350.0669529996812 1355.6269420003518 1361.468136999756 1361.610201999545 1361.8292429996654 1368.8232819996774 1394.128097999841 1398.4789270004258 1400.7987630004063 1405.352316999808 1409.439663999714 1409.584809999913 1414.370697000064 1414.5504769999534 1423.0013769995421 1423.2849850002676 1424.3397930003703 1427.2861280003563 1428.427556999959 1454.3528869999573 1457.256408000365 1457.3256149999797 1459.4297810001299 1459.6987730003893 1460.7041969997808 1461.380950000137 1467.0992369996384 1469.0194739997387 1473.411539000459 1473.430975000374 1474.4414560003206 1477.6029939996079 1479.1495470004156 1483.1309200003743 1484.0050839995965 1490.7817129995674 1498.3649530000985 1498.7632929999381 1502.4813069999218 1503.256698999554 1503.323714000173 1507.4010190004483 1513.4830799996853 1513.5282009998336 1543.6279990002513 1550.3942740000784 1564.0904120001942 1569.5870690001175 1570.7959759999067 1577.9851940004155 1617.9604500001296 1644.9675470003858

Current
Mean: 1502.041 ms
Stdev: 79.049 ms (5.3%)
Runs: 1330.8189989998937 1344.906813999638 1359.4200830003247 1371.2370980000123 1375.0165210003033 1398.7369290003553 1399.1272910004482 1400.282584999688 1421.2639180002734 1421.8126809997484 1436.7622109996155 1439.8553710002452 1444.86361700017 1447.702856999822 1450.5437340000644 1454.1653629997745 1457.9144500000402 1466.7715699998662 1474.5722460001707 1478.6650090003386 1479.5880190003663 1481.036758000031 1481.4013710003346 1484.7163310004398 1492.760003999807 1496.3208779999986 1507.05227500014 1507.0857140002772 1507.4174239998683 1508.2276440002024 1508.4215059997514 1510.4098580004647 1512.9891529995948 1513.7202850002795 1515.0653489995748 1517.8453660001978 1518.4832020001486 1520.636988000013 1526.9346430003643 1527.069834000431 1530.8902669996023 1531.0559970000759 1538.4507189998403 1544.5193849997595 1545.4780949996784 1547.9570540003479 1553.614501000382 1564.8742329999804 1567.0411809999496 1586.9629100002348 1608.8980040000752 1616.7695429995656 1625.375597000122 1628.4144069999456 1638.8582039996982 1660.295493000187 1664.8952970001847 1672.4040660001338
App start time regularAppStart Baseline
Mean: 0.023 ms
Stdev: 0.002 ms (7.0%)
Runs: 0.019612999632954597 0.01965400017797947 0.0197350000962615 0.019816000014543533 0.02042700070887804 0.02054900024086237 0.020914999768137932 0.0210359999909997 0.021037000231444836 0.021119000390172005 0.021402999758720398 0.02160700038075447 0.021687999367713928 0.022095000371336937 0.022134999744594097 0.022135000675916672 0.022257000207901 0.022299000062048435 0.02233900036662817 0.022379999980330467 0.022419999353587627 0.0224609998986125 0.02254199981689453 0.02258299943059683 0.022583000361919403 0.022623000666499138 0.022664000280201435 0.022705000825226307 0.022785999812185764 0.022948999889194965 0.022989999502897263 0.02307100035250187 0.02307100035250187 0.02307199966162443 0.023111999966204166 0.023111999966204166 0.023152999579906464 0.023315000347793102 0.02347799949347973 0.023518000729382038 0.0235190000385046 0.02360100019723177 0.0237229997292161 0.024007000029087067 0.024007000029087067 0.024047999642789364 0.024129999801516533 0.024291999638080597 0.024291999638080597 0.024658000096678734 0.02469899971038103 0.024699000641703606 0.025308999232947826 0.025635000318288803 0.025837999768555164 0.026163999922573566 0.02669299952685833

Current
Mean: 0.022 ms
Stdev: 0.002 ms (7.7%)
Runs: 0.018717000260949135 0.019570999778807163 0.019816000014543533 0.019816000014543533 0.020263999700546265 0.020263999700546265 0.02038499992340803 0.02038600016385317 0.0204670000821352 0.0204670000821352 0.020507999695837498 0.020793000236153603 0.0210359999909997 0.021239999681711197 0.0213620001450181 0.021362999454140663 0.021443999372422695 0.021606000140309334 0.02164699975401163 0.021769000217318535 0.021809999831020832 0.021849999204277992 0.021850000135600567 0.022013000212609768 0.022297999821603298 0.022338999435305595 0.02233900036662817 0.022379999980330467 0.0224609998986125 0.022542999126017094 0.022583000361919403 0.022623000666499138 0.0226239999756217 0.022664000280201435 0.02278600074350834 0.0228279996663332 0.023111999966204166 0.023111999966204166 0.023151999339461327 0.0231520002707839 0.02323400042951107 0.023315999656915665 0.023315999656915665 0.02343800012022257 0.02347799949347973 0.023845000192523003 0.023926000110805035 0.023926000110805035 0.024047999642789364 0.024291999638080597 0.024454999715089798 0.0247809998691082 0.024861999787390232 0.025065000168979168 0.025635000318288803 0.025756999850273132 0.026000999845564365 0.026936000213027
App start time (CPU) Baseline
Mean: 131.179 %
Stdev: 4.067 % (3.1%)
Runs: 120.8440738335518 121.02685094253756 124.59779702104268 125.07998436091843 125.8460779592664 126.02706103165067 126.4406438631791 126.67793240556662 126.82422499073694 127.51491053677934 127.86188089925136 127.8686024931811 127.89620758483032 128.05047266879222 128.27643358287148 128.61827000299198 129.19127776015463 129.41231973239925 129.6027742749054 129.60697354335522 129.6960221373026 129.80282802509606 129.80478087649402 129.9193002719192 130.07479961576624 130.31294561524695 130.64053388218412 130.8338412361732 130.8700426536201 131.24593440253392 131.33275303061762 131.7111447716089 131.83050447901937 131.832067061372 132.18322998451728 132.43759005519792 132.90431114974731 133.01424304997826 133.0303249555352 133.27212242182298 133.4509442267657 133.50927000658783 133.5384785983589 133.63915973193204 133.97299134279376 134.07830693307304 134.44697215679378 135.07432601158985 135.12694514550802 135.19203638911344 135.25335421616202 135.31926419733597 135.3857653863916 135.4607393282085 135.5841560500941 135.77105741618666 138.4390752402576 141.05602374833148 141.25504032258058

Current
Mean: 132.605 %
Stdev: 3.765 % (2.8%)
Runs: 123.77135222826607 125.81611973415312 125.83814523747101 126.94312928646133 127.72394988208498 127.811175276384 128.20766748084458 128.49284035211946 128.4933852513542 128.77077633539358 128.86369867312615 128.8811478017433 129.04404048099954 129.30119308909727 129.670437881413 129.80516898608354 130.0375362240741 130.1854887876869 130.3215126965693 130.40950700167232 130.51235576964336 130.7484785745655 131.2133757559604 131.5792619035288 131.5873735013558 131.7878346539107 131.99522723572989 132.30004187300116 132.31872509960155 132.7764059274453 133.01661783645184 133.02582570201182 133.0528626303274 133.16758977527266 133.17434416970002 133.1761118875948 133.32996725967413 133.64090209913624 133.84144591293312 134.24836011827003 134.48144629231894 134.70290378447226 135.12840984697277 135.23084605260894 135.66236494279144 135.85913353240088 135.87244504072274 136.00787207244963 136.45418326693235 136.49333270302074 136.5985939691118 136.80506815088626 136.83500916967049 137.55155653066984 137.74074074074068 137.90598462169004 138.54442892519054 138.71622119137038 138.77269715043084 142.0308096587836
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

Current
Mean: 59.973 FPS
Stdev: 0.087 FPS (0.1%)
Runs: 59.595117802781935 59.6098590907819 59.79006199581531 59.867923466910234 59.90026969753271 59.946028807461225 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 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: 357.019 MB
Stdev: 6.307 MB (1.8%)
Runs: 342.912109375 343.8203125 345.05078125 345.43359375 345.537109375 345.9140625 346.45703125 346.873046875 347.828125 349.396484375 349.470703125 349.919921875 351.0234375 353.3893229166667 353.5481770833333 354.87109375 355.17578125 355.2018229166667 355.4049479166667 355.5716145833333 355.5755208333333 356.1484375 356.203125 356.416015625 356.5729166666667 358.0390625 358.0989583333333 358.1458333333333 358.6953125 358.734375 358.921875 358.9244791666667 358.953125 359.0104166666667 359.6614583333333 359.7161458333333 360.1432291666667 360.30078125 360.3307291666667 360.75 360.9479166666667 361.03125 361.1484375 361.6432291666667 361.9049479166667 361.9049479166667 361.98828125 362.1588541666667 362.203125 362.9088541666667 362.9088541666667 363.6067708333333 363.7513020833333 363.83984375 364.1653645833333 364.890625 366.8502604166667 366.890625 367.23828125

Current
Mean: 360.928 MB
Stdev: 3.440 MB (1.0%)
Runs: 353.19921875 353.50390625 354.75390625 354.970703125 355.21875 355.6067708333333 355.6484375 355.7122395833333 356.76171875 358.1302083333333 358.1653645833333 358.33984375 358.7369791666667 358.7721354166667 359.00390625 359.16796875 359.5104166666667 359.7005208333333 359.73046875 359.8203125 360.0625 360.2174479166667 360.2239583333333 360.2734375 360.2747395833333 360.2994791666667 360.5546875 360.5872395833333 360.6497395833333 361.03125 361.6705729166667 361.9140625 361.96484375 361.98828125 362.0872395833333 362.3307291666667 362.3489583333333 362.4010416666667 362.4166666666667 362.4752604166667 362.6041666666667 363.11328125 363.1927083333333 363.2981770833333 363.4049479166667 363.43359375 363.640625 363.7981770833333 363.8098958333333 363.96875 364.2239583333333 364.4869791666667 365.5338541666667 365.5755208333333 365.7747395833333 367.45703125 367.7447916666667 368.5377604166667
App start time (CPU/JS) Baseline
Mean: 71.242 %
Stdev: 4.812 % (6.8%)
Runs: 64.7 65.2 65.8 65.8 66.2 66.4 66.4 66.4 66.6 66.6 67 67.1 67.2 67.2 67.2 67.3 67.5 67.6 67.6 67.6 68.4 68.6 68.7 68.8 68.8 69 69 69.1 69.3 69.7 69.9 70 70.4 70.4 70.6 70.7 71 71.6 71.7 71.8 71.8 72.5 73.3 73.6 73.6 74.2 76 76.3 77 77.8 77.9 77.9 78.9 79.1 79.3 79.7 79.9 80.1 81.3 83.4

Current
Mean: 69.454 %
Stdev: 2.851 % (4.1%)
Runs: 63.2 64.6 64.8 65.8 66.3 66.3 66.4 66.5 66.6 66.7 66.9 67.1 67.1 67.2 67.4 67.4 67.8 67.9 67.9 68.5 68.6 68.6 68.6 68.6 68.9 69.1 69.1 69.2 69.4 69.5 69.6 69.7 69.8 69.9 69.9 70 70.1 70.3 70.5 70.6 70.7 70.8 71.1 71.2 71.2 71.3 71.4 71.8 72.7 73 74.5 74.5 75.2 75.2 75.9 76.5
App start time (CPU/UI) Baseline
Mean: 26.853 %
Stdev: 2.674 % (10.0%)
Runs: 20.7 20.9 21 21 21.8 22 22.1 23 24.6 24.9 24.9 25 25.3 25.7 25.9 25.9 26.3 26.4 26.5 26.5 26.6 26.9 27 27.1 27.1 27.2 27.2 27.2 27.2 27.2 27.3 27.7 27.9 27.9 28 28.4 28.4 28.5 28.5 28.6 28.6 28.6 28.7 28.9 29.1 29.4 29.7 29.7 29.9 29.9 30 30.3 30.5 30.6 30.7

Current
Mean: 28.312 %
Stdev: 2.143 % (7.6%)
Runs: 22.5 23.9 24 24.8 25.3 25.8 25.9 26 26.1 26.3 26.5 26.5 26.6 26.7 26.8 26.9 27 27.1 27.8 27.9 27.9 27.9 27.9 28 28 28.1 28.3 28.4 28.5 28.5 28.5 28.5 28.5 28.6 28.7 28.7 28.8 28.9 28.9 29.1 29.1 29.3 29.8 29.8 29.9 30 30.1 30.5 30.6 30.6 30.6 31.2 31.3 31.3 31.8 31.9 32 33.2
Open search router TTI Load Search Options Baseline
Mean: 111.181 ms
Stdev: 7.216 ms (6.5%)
Runs: 98.07478799950331 100.95210799947381 101.06795200053602 101.38798000011593 101.78519700001925 102.60896800085902 102.73140399996191 103.05224600061774 103.37862200010568 103.43758099991828 103.64176400005817 103.82808499969542 104.04382300004363 104.44087800011039 104.98274799995124 104.99723299965262 105.13297600019723 106.00972499977797 106.13045299984515 106.86332200001925 107.80521699972451 107.8644199995324 107.98828099947423 108.65661699976772 109.32210299931467 109.91841599997133 110.04065000079572 110.18843500036746 110.26090500038117 110.56319100037217 110.77006000000983 111.07942700013518 111.40543700009584 111.90096100047231 112.16117300000042 112.4898679992184 112.6887619998306 112.87361700087786 113.61226399987936 113.88203899934888 114.0930580003187 114.3199869999662 114.53938900027424 114.61885599978268 115.18558800034225 116.58292600046843 116.62561099976301 118.56726100016385 119.26428200025111 119.26586899999529 122.01355000026524 122.09159399941564 122.20654299948364 122.46000200044364 123.05159499961883 124.04073099978268 124.61063599959016 125.8973389994353 126.24540199991316

Current
Mean: 112.342 ms
Stdev: 8.292 ms (7.4%)
Runs: 100.61319999955595 100.95996099989861 101.01420099940151 101.19995099958032 101.47810800001025 101.9764809999615 102.58963999990374 102.77620400022715 103.11641499958932 103.17704299930483 103.18782600015402 103.60664899926633 104.01741500012577 104.62963899970055 104.74837299995124 105.70137499924749 106.1407470004633 106.14900700002909 106.23730500042439 106.52547200024128 106.66894599981606 107.17911799997091 108.31245999969542 108.71891300007701 109.01578800007701 109.25166800059378 110.24011300038546 110.33760599978268 111.60400400031358 111.8524580001831 111.87369799986482 112.13830600026995 112.48697899933904 112.72090699989349 113.25801599957049 113.5485030002892 113.78377300035208 114.73079499974847 114.99601299967617 115.2500409996137 115.94311499968171 116.9383140001446 117.63183599989861 117.75858500041068 117.99527999944985 118.96472200006247 119.44816000014544 119.45992000028491 120.249267000705 120.27181000076234 120.95080599933863 122.51289900019765 123.38146999944001 123.73087599966675 125.80399600043893 126.15856899973005 126.36934400070459 126.68420400004834 127.39086899999529 135.0927729997784
Open search router TTI Open Search Router TTI Baseline
Mean: 607.813 ms
Stdev: 102.088 ms (16.8%)
Runs: 412.98807800002396 430.2324219997972 430.4366459995508 433.31461599934846 434.79512599948794 442.57588700018823 445.1052250005305 446.2406000001356 448.6750490004197 449.90999399963766 455.9630950000137 456.0617669997737 457.6505950000137 482.77864599972963 507.58341500069946 509.0227459995076 509.1633300008252 511.14514200016856 514.0240890001878 514.3767089992762 519.0826420001686 521.5022789994255 526.1703689992428 527.3527830000967 528.162597999908 531.8892419999465 536.0502530001104 547.1708169998601 551.0559900002554 557.0107829999179 561.0065509993583 562.2843430005014 564.4177660001442 567.2339280005544 570.1509599993005 570.5584710007533 570.7527270000428 571.6330570001155 574.2430019993335 574.88830600027 576.5821529999375 578.3681640001014 580.3015540000051 580.4798999996856 581.5368250003085 586.2126470003277 588.8826500000432 590.629313999787 592.0331220002845 593.2249750001356 594.4976399997249 597.8615729995072 598.9637040002272 600.3985190000385 602.3466389998794 603.011800000444 604.8153889998794 605.8176279999316 606.556925999932 611.9218349996954 618.303507999517 621.3704430004582 623.0390630001202 632.687336999923 634.2768970001489 636.4029139997438 640.1892499998212 646.260214000009 656.918171999976 663.7423910005018 669.8839929997921 672.3296720003709 673.7920329999179 678.525349999778 679.889038999565 690.1092540007085 690.2696939995512 693.9434409998357 701.825358000584 702.9621999999508 711.1055509997532 717.6029869997874 722.4427079996094 723.7683110004291 724.0421550003812 724.7876379992813 731.6351730003953 737.5761719997972 741.4385989997536 751.4848230006173 754.3382169995457 754.8189290007576 756.5017500007525 756.8715009996668 761.105671999976 763.5242919996381 769.2225340008736 774.7884929999709 789.2437339993194 794.353353000246 803.4701340002939 806.9434820003808

Current
Mean: 603.339 ms
Stdev: 106.288 ms (17.6%)
Runs: 425.85705600026995 443.37829599995166 444.20023600012064 445.1326089994982 446.11901799961925 449.56632500048727 451.8841150002554 453.3190919999033 454.1701659997925 455.4994709994644 458.86393200047314 462.41471299994737 463.5265300003812 467.45039900019765 473.4077559998259 474.0482999999076 487.3600260000676 496.0640059998259 502.3864750005305 509.1697589997202 509.7338870000094 509.7936599999666 511.11694400012493 514.4242759998888 517.4380289996043 519.0020350003615 522.2176520004869 523.2189939999953 531.1346850004047 533.2121179997921 534.6734619997442 537.3825690001249 537.959309999831 538.3407800002024 550.7524009998888 554.3876550002024 557.2833660002798 560.7363279992715 561.0064700003713 564.4267170000821 565.7580979997292 567.2045499999076 568.2936200005934 575.2288820007816 576.8738609999418 582.2420250000432 586.2896330002695 588.4050699993968 593.2762859994546 593.5726330000907 599.3349609998986 599.7482909997925 600.53202399984 603.0409750007093 603.9385169995949 604.8487959997728 605.737630000338 613.6407470004633 618.234579000622 623.0453289998695 625.5757250003517 626.7302249995992 630.114990000613 630.4071450000629 634.1549070002511 640.5869140001014 643.0776370000094 644.3224280001596 652.8353690002114 653.1757009997964 657.6619879994541 658.1213380005211 668.3506669998169 669.706828000024 673.1308599999174 677.1644700001925 686.6524249995127 687.6006269995123 701.097574999556 703.2503669997677 706.4938559997827 708.0047610001639 716.8267829995602 719.1689860001206 723.8765470003709 725.74768100027 726.8056239997968 731.1733400002122 735.8480230001733 739.8863530000672 750.0679529998451 756.1665449999273 757.3279219996184 758.4544280003756 759.6523439995944 777.147257999517 783.3079429995269 803.6121020000428 852.5699880002066 858.7537839999422 861.3371999999508
Open search router TTI (CPU) Baseline
Mean: 135.551 %
Stdev: 3.548 % (2.6%)
Runs: 127.37850912222625 127.52473479351583 128.4137257171597 129.928957376197 130.48245046476958 131.11327146503808 131.29684006809345 131.4857050249538 131.834534119013 132.07770758216347 132.35211155662824 132.77756104670502 132.89124686933528 132.9226919936785 132.96821266188763 133.15455300393813 133.44187830896018 133.58110192331063 133.6058825924437 134.10107075932697 134.13872679105998 134.3500160886457 134.52894521953704 134.7097890891604 134.7290637903833 134.82579844225137 134.82837365165264 135.17078181215953 135.60302412362307 135.74032582982932 135.98943417288007 136.12699101188693 136.6748261909552 137.19319305947627 137.22421764404686 137.2519142175061 137.31817631852576 137.37551719322605 137.4576719678891 137.58755612995608 137.64065214752958 137.86167428576607 137.9805606439945 138.1107519639853 138.1764657352101 138.21868491692507 138.34117078416625 138.60471956206433 138.6629493236071 138.751608823991 139.0888541165471 139.5331570768815 140.30424911186688 140.32253421443968 140.8463375167645 141.545090909701 142.14096642776488 143.67027069547123

Current
Mean: 134.865 %
Stdev: 2.301 % (1.7%)
Runs: 130.06972111553787 130.40742862304867 130.94156839581962 131.11602585072876 131.31883736859444 131.770522122701 131.9959732815694 132.12021560677852 132.26668972811353 132.59414835916814 132.75973817025096 132.81739592551622 132.88795391011334 133.27213322266775 133.27310538967615 133.35902153132426 133.52603114076834 133.75666197485515 133.83178878647888 133.8898618734643 134.00424142632255 134.0893548095872 134.09579552754147 134.13326279402267 134.25988699474797 134.35983290356904 134.40463374271476 134.5149098505172 134.66061182625046 134.87351710974121 135.06355511696574 135.15779147749356 135.19063064717452 135.29204904969163 135.3448700962021 135.40306606425824 135.51030683923176 135.61053968640098 135.73838935776718 135.76454906568367 136.2858142374561 136.31862076654164 136.57626948720664 136.58961340886736 136.62240897283553 136.77039596277316 136.99278373885437 137.20780570112888 137.42633594910941 137.5794339386963 137.68373762665755 137.8976932735983 137.94283339621677 137.94531831919116 138.55199702048702 139.37294002804634 139.43862600021137 139.5086051799344
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

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
Open search router TTI (RAM) Baseline
Mean: 362.296 MB
Stdev: 2.132 MB (0.6%)
Runs: 357.2734375 357.599609375 358.5673828125 358.74609375 358.75 359.271484375 359.46875 360.4912109375 360.5263671875 360.869140625 360.939453125 360.9931640625 361.083984375 361.1015625 361.224609375 361.298828125 361.38671875 361.4208984375 361.4296875 361.4873046875 361.568359375 361.6435546875 361.6787109375 361.6787109375 361.7255859375 361.765625 361.828125 362.0478515625 362.1083984375 362.1337890625 362.2216796875 362.26171875 362.283203125 362.318359375 362.4345703125 362.50390625 362.595703125 362.6728515625 362.685546875 362.8447265625 363.021484375 363.1109375 363.4713541666667 363.6875 363.958984375 364.0556640625 364.06640625 364.0986328125 364.185546875 365.1865234375 365.2548828125 365.26953125 365.4287109375 365.5146484375 366.1220703125 366.513671875 366.6328125 366.6494140625

Current
Mean: 364.139 MB
Stdev: 2.528 MB (0.7%)
Runs: 358.162109375 358.5703125 358.8994140625 359.029296875 360.0654296875 360.56640625 360.6484375 361.21875 361.4580078125 361.4794921875 361.6416015625 362.1494140625 362.427734375 362.4775390625 362.5537109375 362.58984375 362.8056640625 362.9375 363.0263671875 363.1083984375 363.4208984375 363.474609375 363.564453125 363.91796875 364.001953125 364.08203125 364.2216796875 364.314453125 364.314453125 364.337890625 364.3388671875 364.353515625 364.404296875 364.5458984375 364.7705078125 364.8232421875 364.83203125 364.8720703125 364.9462890625 365.0791015625 365.1748046875 365.220703125 365.69140625 365.708984375 365.7099609375 365.7998046875 366.0546875 366.19140625 366.4130859375 366.7021484375 366.75390625 366.9013671875 367.0283203125 367.2744140625 367.529296875 367.5537109375 367.7578125 368.23828125 369.0068359375 369.22265625
Open search router TTI (CPU/JS) Baseline
Mean: 70.038 %
Stdev: 2.402 % (3.4%)
Runs: 65.4 66.2 66.3 66.4 66.4 66.7 67 67.1 67.5 67.8 67.8 68 68.1 68.1 68.3 68.4 68.4 68.8 68.8 68.9 69 69.2 69.4 69.5 69.6 69.9 69.9 69.9 70 70.1 70.2 70.2 70.2 70.3 70.3 70.4 70.4 70.8 70.9 70.9 71 71.1 71.3 71.8 71.9 72 72 72.1 72.2 72.2 72.4 72.8 72.8 73.4 74 75.5 75.8 76.4

Current
Mean: 70.195 %
Stdev: 2.260 % (3.2%)
Runs: 65.6 65.7 65.9 66.4 67.4 67.6 67.6 67.7 68.2 68.2 68.3 68.4 68.4 68.5 68.7 68.8 68.8 68.8 68.9 68.9 69 69 69.3 69.3 69.4 69.8 69.8 69.9 69.9 70 70.1 70.1 70.2 70.3 70.4 70.4 70.5 70.6 70.6 70.9 71.2 71.2 71.5 71.7 71.8 71.9 72.1 72.1 72.2 72.4 72.4 72.6 72.7 72.9 73.2 73.7 73.8 75 75.1 75.9
Open search router TTI (CPU/UI) Baseline
Mean: 27.136 %
Stdev: 1.251 % (4.6%)
Runs: 24.9 25.2 25.4 25.4 25.6 25.6 25.7 25.7 25.8 25.9 25.9 26 26 26.1 26.3 26.3 26.4 26.5 26.5 26.5 26.5 26.6 26.6 26.8 26.8 26.9 26.9 26.9 26.9 26.9 26.9 27 27 27.1 27.1 27.1 27.4 27.5 27.8 27.8 27.8 27.9 27.9 27.9 27.9 28 28 28.2 28.4 28.4 28.6 28.8 28.9 29.2 29.7 29.8 29.9 30.4

Current
Mean: 26.697 %
Stdev: 1.534 % (5.7%)
Runs: 23.1 23.8 24.4 24.6 24.7 24.7 24.9 24.9 25.2 25.3 25.4 25.4 25.5 25.5 25.6 25.6 25.7 25.8 25.9 25.9 25.9 26.1 26.1 26.2 26.2 26.4 26.4 26.4 26.4 26.4 26.4 26.5 26.5 26.7 26.8 26.9 26.9 26.9 26.9 27.3 27.4 27.4 27.7 27.8 27.8 27.9 27.9 28.3 28.4 28.4 28.4 28.4 28.4 28.5 28.7 28.9 29 29.7 30.1 30.5
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: 433.492 ms
Stdev: 32.595 ms (7.5%)
Runs: 357.42700199969113 360.5245360005647 362.42797899991274 378.82637599948794 379.9772540004924 385.0108650000766 394.1004640003666 403.3763020001352 404.8420000001788 406.463623999618 406.70731600001454 407.03519700001925 407.3583980007097 407.7268880000338 409.0080159995705 409.8991299998015 413.3105469997972 414.2649330003187 416.16499900072813 418.30997799988836 418.77254300005734 419.01888000033796 420.48295100033283 420.6173910005018 422.98291100002825 429.2277830000967 430.6017660005018 431.60567299928516 433.0136719997972 434.7529300004244 437.4896239992231 442.75585999991745 443.1572270002216 443.2656659996137 444.0798749998212 445.0754810003564 447.37259999942034 447.80167600046843 448.4643560005352 449.1162920007482 450.3763839993626 450.8589679999277 451.0945229995996 452.19954400043935 455.7788080004975 456.21362300030887 459.36539799999446 459.9066579993814 460.47725399956107 462.1544999992475 466.4069010000676 468.95784500055015 471.6958010001108 472.41646299976856 477.7371420003474 479.6876220004633 481.1485189991072 486.1059170002118 490.7356770001352 503.77213599998504

Current
Mean: 435.517 ms
Stdev: 33.100 ms (7.6%)
Runs: 360.4134929999709 360.60620199982077 366.93383800052106 374.9204509994015 385.50313299987465 396.1385089997202 403.0495610004291 403.9834799999371 407.1550700003281 411.52567500062287 411.6863609999418 411.8438309999183 412.34981300029904 413.1015630001202 413.4821380004287 414.3009839998558 416.97330700047314 418.2191570000723 419.1590990005061 419.74820999987423 420.8764249999076 422.99772199988365 426.7875570002943 426.8341060001403 427.5747890006751 428.28759799990803 429.02364199981093 429.03727299999446 431.0003660004586 432.09932500030845 432.1580810006708 432.38830600026995 439.769654000178 439.8379310006276 440.1031909994781 444.8436690000817 446.4021000005305 448.96223900001496 450.2739660004154 452.4421790000051 452.7235509995371 452.7794189993292 456.68196599930525 458.3508709995076 458.7573650004342 461.1376949995756 463.90433800034225 464.1003820002079 464.34627299942076 466.3445230005309 466.46529099997133 469.67431600019336 471.8071699999273 480.81152400001884 486.3105469997972 486.69925999920815 491.6240640003234 495.6648360006511 524.5367430001497
Report typing (CPU) Baseline
Mean: 101.609 %
Stdev: 3.892 % (3.8%)
Runs: 92.65172535861014 94.78440137538598 95.51175731322962 95.88422901700478 96.49023646343099 96.98824048403364 97.02909933099676 97.17087441443168 97.67767589892105 97.94512846308005 98.26688967052506 98.30290840613918 98.46960253951436 98.59057981904256 98.6604648092853 98.71096058528364 98.9814775255505 99.0003187216791 99.30231025495979 99.35444422911239 99.4184677233433 99.78447856635324 99.80335650491206 99.85403391353418 99.97634635345679 100.038208527 100.37897637363434 100.53256635187392 100.61470062736637 101.14873550679678 101.26445084899937 101.28538628495293 101.31563981545519 101.34706740446099 101.41969688367736 101.89972322002643 102.02963058978337 102.43482414958063 103.22749239463188 103.80529104879568 103.80596831478206 104.2848569939104 104.3683438288325 104.39786010855713 104.64155041125196 105.17690502912345 105.3502500387193 105.72024891626009 105.76819365024087 105.80738619553912 106.35718862406048 106.6047433906348 106.88321838760088 107.09788657003939 107.1557877280172 107.74576236640341 108.14314906064712 108.19045551718038 108.30913423342173 109.37993018283284

Current
Mean: 101.884 %
Stdev: 3.843 % (3.8%)
Runs: 90.81600735087548 96.7128733977665 97.07285252475536 97.53238370541428 97.61866552619674 97.69192796458783 97.76550166515571 97.81149835198215 98.32993166115126 98.37116239763834 98.40439270582063 98.41234309342828 98.67150921103683 98.75131785199484 98.77532336312045 98.89391807708412 98.96226116661386 98.99512789614302 99.41063591587438 99.53590099816282 99.60263872914521 99.95601329122228 100.14275371163166 100.17339302472553 100.2578528538469 100.36153346058812 100.39158167714291 100.43884873288148 100.44636762227273 100.69169150930607 100.69294804013163 100.91751557780023 101.29547812525637 101.71491070703759 101.8048821096891 102.4884494955381 102.4988076712218 102.72341859301558 102.92092766111264 103.38812880497434 104.42211994958575 104.59323034522214 104.67202375923003 104.70092233450805 105.3405069737051 105.41555625673544 106.28047336573061 106.34215857081567 106.65545388201683 106.81164712735811 107.04147785923382 107.13511602531223 107.20406970828378 107.22813629257453 107.28105404299677 107.54781147050271 107.68954331975438 107.89041325033376 108.50034865197523 108.81502156006671
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

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
Report typing (RAM) Baseline
Mean: 494.557 MB
Stdev: 3.149 MB (0.6%)
Runs: 487.9576822916667 488.513671875 488.9446614583333 489.0295138888889 489.75390625 490.21571180555554 490.5305989583333 490.9900173611111 491.2165798611111 491.58717105263156 491.69618055555554 492.21175986842104 492.21875 492.2701480263158 492.39925986842104 492.67886513157896 492.82154605263156 493.11410361842104 493.2008634868421 493.494140625 493.5138888888889 493.5384114583333 493.53993055555554 493.80345394736844 493.8069490131579 493.9385279605263 494.0875822368421 494.14638157894734 494.3072916666667 494.43236019736844 494.5649671052632 494.74136513157896 494.91673519736844 495.18441611842104 495.29029605263156 495.46397569444446 495.57442434210526 495.7627467105263 495.90111019736844 496.3088107638889 496.4490017361111 496.61348684210526 496.7158717105263 496.79017857142856 497.16673519736844 497.60279605263156 497.908203125 498.0688733552632 498.2912326388889 498.56270559210526 498.74534970238096 498.8871299342105 498.9800575657895 499.32606907894734 500.4605263157895 500.57010690789474 500.92816840277777

Current
Mean: 494.830 MB
Stdev: 3.515 MB (0.7%)
Runs: 487.12348090277777 488.46527777777777 488.57725694444446 489.0032552083333 489.5522203947368 489.74794407894734 489.77734375 490.7900904605263 490.97080592105266 491.2493832236842 491.84066611842104 492.0017361111111 492.2447916666667 492.47157118055554 492.59071180555554 492.75123355263156 493.1449424342105 493.21299342105266 493.21361019736844 493.556640625 493.7578125 494.09765625 494.25801809210526 494.43277138157896 494.5530427631579 494.57051809210526 494.6704358552632 494.6848958333333 495.06167763157896 495.3610197368421 495.3935032894737 495.48848684210526 495.54954769736844 495.6686197916667 495.69901315789474 495.95855034722223 496.0892269736842 496.24527138157896 496.32051809210526 496.76541940789474 496.9080078125 497.04405381944446 497.16036184210526 497.3841145833333 497.66426809210526 497.74527138157896 497.94263980263156 498.50966282894734 498.9009046052632 499.0084292763158 499.0479029605263 499.57442434210526 500.2705592105263 500.6624177631579 501.70203993055554 504.05316840277777
Report typing (CPU/JS) Baseline
Mean: 46.878 %
Stdev: 3.056 % (6.5%)
Runs: 40.7 40.7 41 41.6 41.8 41.8 41.9 42.2 42.4 43.1 44 44.6 44.6 44.8 45 45.4 45.5 45.5 45.5 45.8 45.9 45.9 46 46.1 46.2 46.5 46.5 46.7 46.7 46.9 47.1 47.2 47.3 47.6 47.6 47.7 48 48 48.2 48.4 48.7 48.8 48.9 49.2 49.7 49.7 49.8 49.9 50.1 50.1 50.2 50.2 50.3 50.6 50.7 50.9 50.9 51.3 52.1 52.2

Current
Mean: 47.202 %
Stdev: 2.904 % (6.2%)
Runs: 40.8 41.5 41.6 41.8 41.9 41.9 43.6 44.2 44.3 44.9 44.9 45.2 45.3 45.4 45.5 45.5 45.5 45.6 45.7 45.7 45.9 46 46 46.3 46.3 46.3 46.5 46.6 46.8 46.9 46.9 47.3 47.4 47.4 47.6 48 48.1 48.1 48.9 48.9 49.1 49.4 49.4 49.4 49.5 49.7 49.7 49.7 49.8 49.9 50.7 50.9 50.9 51 51.2 51.2 51.5 51.5 51.8 52.8
Report typing (CPU/UI) Baseline
Mean: 25.678 %
Stdev: 0.985 % (3.8%)
Runs: 23.8 23.9 24.1 24.1 24.3 24.3 24.4 24.5 24.5 24.6 24.7 24.7 24.8 24.9 24.9 24.9 25 25.1 25.1 25.1 25.2 25.3 25.3 25.3 25.4 25.4 25.4 25.5 25.6 25.6 25.7 25.8 25.8 25.9 25.9 25.9 25.9 26 26.1 26.1 26.1 26.2 26.2 26.2 26.4 26.5 26.5 26.5 26.7 26.8 26.8 26.8 26.9 27 27 27.1 27.2 27.6 27.6 27.8

Current
Mean: 25.805 %
Stdev: 0.953 % (3.7%)
Runs: 23.3 24.2 24.3 24.4 24.5 24.5 24.6 24.6 24.8 24.9 24.9 24.9 25 25.1 25.1 25.2 25.2 25.2 25.2 25.2 25.2 25.3 25.3 25.3 25.4 25.5 25.7 25.7 25.7 25.8 25.8 26 26 26 26.2 26.2 26.2 26.3 26.3 26.4 26.5 26.5 26.6 26.6 26.7 26.7 26.7 26.7 26.8 26.8 26.8 27 27.1 27.1 27.2 27.2 27.3 27.4 27.4
Chat opening Chat TTI Baseline
Mean: 551.840 ms
Stdev: 21.484 ms (3.9%)
Runs: 498.85803300049156 501.16060400009155 516.6138520007953 519.4235430005938 525.0353190004826 531.5711260000244 532.549478999339 535.0560299996287 536.1262619998306 536.3569339998066 537.3826500000432 539.1949060000479 539.1999519998208 540.4249680005014 540.7664790004492 540.7908939998597 540.9266360001639 540.9984950004146 542.5889889998361 542.7798669999465 543.1915279999375 543.9167480003089 544.209472999908 544.8026129994541 544.978516000323 545.410074999556 546.2103269994259 546.2740070000291 547.7266039997339 550.8897299999371 552.2225339999422 553.2254239991307 554.7419440001249 554.804770000279 556.103800999932 557.6879879999906 559.1264240005985 559.1428629998118 559.4296070002019 561.5832519996911 562.0917159998789 563.4815680002794 569.7268070001155 569.9225670006126 572.9616700001061 573.0651449998841 573.9674479998648 574.262817999348 575.8137619998306 583.016194999218 583.7199309999123 590.5666100000963 594.3278409997001 596.0553799998015 604.7174890004098

Current
Mean: 549.082 ms
Stdev: 23.870 ms (4.3%)
Runs: 497.1210130006075 501.74637900013477 513.6064860001206 514.2666429998353 516.8620199998841 520.730956999585 522.0381269995123 527.637369999662 528.076253999956 529.1787520004436 529.4571949997917 529.6234950004146 531.2393800001591 531.7358809998259 531.8192539997399 532.6815189998597 534.2660719994456 535.2007250003517 535.7241210006177 536.2093909997493 536.4436440002173 536.4816079996526 538.0386960003525 538.2990720001981 538.5729979993775 540.6239010002464 541.2129309996963 541.8603520002216 543.0210370002314 543.8339039999992 544.9904780006036 545.1793630002066 546.4846200002357 552.231608000584 553.0995289999992 553.6200769999996 555.0386560000479 555.6201579999179 555.919882000424 555.943806999363 556.5419919993728 557.2199300006032 561.2271320000291 563.5085860006511 564.387817999348 567.1837160000578 570.7257900005206 570.769491000101 572.1796469995752 575.4317630007863 576.2572839995846 576.8649500003085 577.8205160005018 582.0627450002357 584.6187749998644 586.0765390004963 586.634724999778 587.4037680001929 592.5018729995936 619.781576000154
Chat opening (CPU) Baseline
Mean: 140.742 %
Stdev: 4.744 % (3.4%)
Runs: 131.68554410588266 131.99567682661427 132.36208672324736 133.44880452454447 134.2605503279156 134.37225548902202 134.8186747225579 134.9143291681889 134.93670590535095 135.15580743275356 135.15664182237248 135.9901587755258 136.5820052804021 136.59681485136556 136.88247011952194 137.4661407501733 137.53527721831915 137.9315678555807 138.15653751628523 138.18176093248454 138.45137013280805 138.50777890858603 138.7804391217566 138.8854102520961 139.31038427931054 139.50892113092272 139.7673224887731 139.96613011401743 140.4222166585438 140.55990767175328 140.68411577602765 140.9450590255332 141.256124752278 141.37007362594227 141.67144130379424 141.6959249620022 141.87062724513686 142.37428285906412 142.77006821347362 143.08308132930134 143.10569204547946 143.71281108886814 143.75069383146064 143.89270579494098 144.18123395356406 144.33289998439938 144.86327345309385 145.9022681671445 146.26012599104163 146.3898564328113 146.67184407543206 146.7297397237399 146.74869401488954 147.38373241142375 147.51434308663227 148.00266458132697 148.2343084351036 148.42438717161855 148.7142844931895 149.40085540045078

Current
Mean: 143.206 %
Stdev: 4.605 % (3.2%)
Runs: 133.38680257087427 134.60429037895958 135.75518843908054 135.75677428792872 135.88323353293418 136.1486481071354 137.0383111546282 137.297196311242 137.81255417451956 138.94870573230168 139.06260141764895 139.29666390606377 139.32122251351834 139.48642394569578 139.67283276187666 139.8344725801895 139.88467014811937 140.09267582422154 140.47848636722577 141.1533592724619 141.62091440064987 141.91703486495842 142.01157723506543 142.41112071896012 142.53073510562925 142.80225391021102 142.803908664625 142.8559102502489 142.85996470207735 142.86014722683524 143.23839494359135 143.3342809504342 143.54995789309834 143.77809183891125 143.78187133536602 143.7852618830664 143.93566946857203 144.3733643823465 144.4103893711974 144.48719114839213 145.0271684119378 145.42318682122914 145.45545671256028 146.35565449381605 146.46200160804094 146.54148645151744 146.85329341317367 147.53395331816498 147.83859949311162 147.93803689100704 148.65729180271376 148.81522017409117 149.2070410281466 149.31902837743783 149.85535905478298 150.01311286008328 151.07829812730003 151.17719920459746 152.23833888519079 152.33244203002752
Chat opening (FPS) Baseline
Mean: 59.924 FPS
Stdev: 0.164 FPS (0.3%)
Runs: 59.34028950943629 59.488574509300946 59.49338710915475 59.533562569291504 59.57825730459345 59.69866631558602 59.715363113114705 59.772209590769414 59.802719629029674 59.87555714553492 59.92312203603488 59.96994923582504 60 60 60 60 60 60 60 60 60 60 60 60 60 60 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
Chat opening (RAM) Baseline
Mean: 370.777 MB
Stdev: 11.271 MB (3.0%)
Runs: 355.173828125 357.59375 358.751953125 359.09765625 359.60546875 359.705078125 359.7822265625 360.166015625 360.2705078125 360.345703125 360.46875 360.4853515625 360.55859375 360.6123046875 360.8359375 360.892578125 360.9609375 361.2060546875 361.283203125 361.3115234375 361.3671875 361.41796875 361.82421875 361.828125 362.044921875 362.150390625 362.8642578125 363.142578125 363.19921875 363.2685546875 363.7490234375 363.994140625 365.5810546875 367.2109375 374.27734375 375.060546875 378.1376953125 379.6826171875 381.310546875 381.546875 381.72265625 381.8544921875 382.3515625 382.99609375 383.1708984375 383.3544921875 383.3544921875 383.4609375 383.8857421875 383.9404296875 384.5439453125 384.625 384.689453125 385.06640625 385.279296875 385.46875 385.54296875 386.7548828125 389.99609375 391.8017578125

Current
Mean: 381.725 MB
Stdev: 3.111 MB (0.8%)
Runs: 373.2958984375 373.810546875 374.01171875 374.8310546875 377.2822265625 377.3974609375 377.421875 378.8984375 379.6650390625 379.732421875 379.7490234375 379.775390625 380.138671875 380.3388671875 380.8232421875 380.974609375 381.1064453125 381.177734375 381.212890625 381.2548828125 381.263671875 381.3037109375 381.576171875 381.75390625 382.01953125 382.1005859375 382.1025390625 382.1474609375 382.1552734375 382.5234375 382.732421875 382.8759765625 383.138671875 383.1396484375 383.1396484375 383.3115234375 383.427734375 383.87109375 383.9169921875 384.044921875 384.0888671875 384.2578125 384.3818359375 384.4658203125 384.6162109375 384.927734375 385 385.0087890625 385.208984375 385.2392578125 385.7685546875 386.0029296875 387.0263671875
Chat opening (CPU/JS) Baseline
Mean: 69.772 %
Stdev: 1.822 % (2.6%)
Runs: 66 66.3 66.4 66.4 66.9 66.9 67.3 67.4 67.4 67.9 68.1 68.2 68.3 68.4 68.4 68.7 68.9 68.9 68.9 68.9 68.9 69.1 69.2 69.3 69.4 69.4 69.4 69.5 69.5 69.5 69.7 69.8 69.9 69.9 70.3 70.4 70.4 70.5 70.7 71 71 71 71 71.3 71.4 71.4 71.4 71.5 71.5 71.7 71.7 71.8 71.8 71.9 71.9 71.9 72.4 72.5 73 73.8

Current
Mean: 71.778 %
Stdev: 2.066 % (2.9%)
Runs: 67.4 68.3 68.4 68.5 69.2 69.3 69.4 69.5 69.6 69.7 69.8 69.8 69.9 69.9 69.9 70.2 70.4 70.4 70.5 70.5 70.9 71 71 71 71.1 71.1 71.3 71.3 71.3 71.4 71.5 71.5 71.6 72.1 72.3 72.4 72.4 72.4 72.6 72.7 72.8 72.9 72.9 73 73.3 73.4 73.5 73.6 73.9 73.9 74.3 74.3 74.4 74.4 74.4 74.9 75.5 75.7 75.7 76.4
Chat opening (CPU/UI) Baseline
Mean: 31.123 %
Stdev: 1.866 % (6.0%)
Runs: 28 28.1 28.5 28.7 28.7 28.8 28.8 29 29 29.1 29.3 29.4 29.5 29.5 29.9 29.9 29.9 29.9 30 30 30 30.4 30.4 30.4 30.5 30.7 30.8 30.8 30.9 30.9 30.9 30.9 30.9 31 31 31.1 31.3 31.3 31.5 31.9 31.9 31.9 32 32.4 32.4 32.4 32.5 32.8 32.9 32.9 33 33.1 33.2 33.2 33.4 34 35.1 35.4 35.4 35.9

Current
Mean: 31.161 %
Stdev: 1.476 % (4.7%)
Runs: 27.5 28 28.3 29 29.1 29.2 29.2 29.4 29.4 29.8 29.8 29.9 30 30.1 30.2 30.2 30.3 30.3 30.4 30.4 30.4 30.5 30.7 30.9 30.9 31 31 31.1 31.2 31.2 31.4 31.5 31.7 31.7 31.7 31.8 31.8 31.8 31.8 31.9 31.9 31.9 32 32 32.2 32.2 32.3 32.5 32.5 32.6 32.6 32.7 32.7 32.9 33.2 33.5 33.7 34.1 34.5
Linking (CPU) Baseline
Mean: 149.750 %
Stdev: 2.788 % (1.9%)
Runs: 143.46004132250062 144.38044035108666 145.10827803777508 145.11086410204658 145.80630156923525 145.84097321503282 146.016838239177 146.34032283223794 146.7281421374672 146.9429114095896 147.09065253490968 147.1606378189207 147.4342136480758 147.44464311463537 147.53276546869057 147.53428421741853 147.7303304731207 147.917205548255 147.9643664603962 147.99592687766733 148.2384984259672 148.61214242832972 148.78860964503116 148.98222871529177 149.05613036964624 149.12544103412606 149.192033023457 149.1957357543476 149.63215991807496 149.70309626398273 149.92012773619686 150.03992827064988 150.0513345125651 150.51047696947396 150.6358576548561 150.69892635353438 150.7618482240813 151.11219856011041 151.33531488541217 151.40609467318973 151.42626484425264 151.46246689789436 151.49253553855092 151.66030978217452 151.73625078123067 151.77585144181552 151.98518932574143 152.0556891720075 152.13056374157114 152.37918342653208 152.89440551787612 153.0501981112028 153.06031407318707 153.44686901875517 153.52825612583356 153.5903283529346 154.36887835339945 154.543760939872 154.80338631486305 155.09642151190724

Current
Mean: 149.913 %
Stdev: 3.083 % (2.1%)
Runs: 143.07143093604037 143.56813059811765 144.8843031433355 145.1918498285162 145.78223609438723 145.96574702822528 146.33102890534215 146.89845266363764 147.07844550117935 147.0984895557946 147.12986846728398 147.3632140229914 147.6100575710671 147.7156107578598 147.96198845040672 147.96799294815725 147.98277287851516 148.09422489563386 148.13847426969832 148.1416150844678 148.43421538675796 148.4538867250646 148.6171383486798 148.94943786491822 148.97455691027588 149.22744487966222 149.30421387300777 149.4228048625342 149.5965519852828 149.78367068503792 149.79830320091662 150.00559722673262 150.0450807741583 150.0739819086581 150.1167933164694 150.4772238531067 150.6671357836411 150.74725952741122 150.85017342331136 151.09227047902914 151.32685282805804 151.426251685516 151.434212382273 151.46259437824244 151.50737195262693 152.01822337217567 152.42722929403246 152.4729889464876 152.57766675575024 152.7178612116727 152.8020406049878 152.963318337946 152.97233894959794 153.03596731035134 153.24540515915766 154.70183913755608 155.08131943284747 156.6834098465211 157.6422837099354 157.64857921086698
Linking (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

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
Linking (RAM) Baseline
Mean: 414.923 MB
Stdev: 5.727 MB (1.4%)
Runs: 405.2063802083333 406.14453125 406.8053385416667 407.6555989583333 407.708984375 407.83984375 408.3873697916667 409.0553385416667 409.1783854166667 409.2936197916667 409.3275669642857 409.3404947916667 409.5546875 409.8990885416667 410.3841145833333 410.8723958333333 411.1848958333333 411.2141927083333 411.30636160714283 411.4505208333333 411.5989583333333 411.9759114583333 412.0826822916667 412.1791294642857 412.4765625 412.5638020833333 412.6927083333333 412.7044270833333 413.478515625 414.4205729166667 415.20703125 415.2298177083333 415.55078125 415.630859375 415.681640625 416.0065104166667 416.2272135416667 416.228515625 417.6328125 417.6875 417.8854166666667 417.9036458333333 417.9303385416667 418.6790364583333 418.8951822916667 419.3463541666667 419.3899739583333 419.6315104166667 420.0221354166667 420.58426339285717 421.0078125 421.1979166666667 421.2838541666667 422.005859375 422.77734375 426.91015625 427.9330357142857 428.65011160714283 429.33482142857144

Current
Mean: 414.818 MB
Stdev: 5.552 MB (1.3%)
Runs: 403.7220052083333 404.916015625 405.15234375 406.1106770833333 406.2897135416667 407.6236979166667 408.0227864583333 409.1875 409.7408854166667 410.23660714285717 410.3671875 410.443359375 410.4498697916667 411.2916666666667 411.6692708333333 411.9283854166667 412.0833333333333 412.2565104166667 412.3391927083333 412.515625 412.5345052083333 412.5540364583333 412.57421875 412.84877232142856 413.0319010416667 413.078125 413.3079427083333 413.388671875 413.544921875 414.0983072916667 414.404296875 414.51171875 414.8912760416667 415.34765625 415.4205729166667 416.2096354166667 416.306640625 416.4778645833333 416.9778645833333 417.1692708333333 417.3645833333333 417.39453125 417.703125 418.1002604166667 418.1145833333333 418.2194010416667 419.2233072916667 419.8001302083333 420.0299479166667 420.2376302083333 421.6451822916667 421.97265625 423.2877604166667 425.38113839285717 425.79464285714283 426.01674107142856 426.35435267857144 427.8002232142857
Linking (CPU/JS) Baseline
Mean: 79.989 %
Stdev: 1.305 % (1.6%)
Runs: 76.9 77.1 77.4 77.9 78.1 78.6 78.6 78.7 78.7 78.8 79 79 79.2 79.2 79.2 79.2 79.3 79.3 79.4 79.5 79.5 79.5 79.6 79.7 79.7 79.7 79.8 79.8 79.9 79.9 80 80.1 80.2 80.2 80.3 80.4 80.4 80.4 80.5 80.6 80.7 80.8 80.9 80.9 81 81 81.2 81.3 81.3 81.4 81.7 82 82.1 82.1 82.5 82.5 82.7

Current
Mean: 79.872 %
Stdev: 1.765 % (2.2%)
Runs: 76 76.4 76.4 76.7 76.8 77.3 77.3 77.6 77.8 78 78.2 78.4 78.5 78.5 78.8 78.8 78.8 78.9 78.9 79.1 79.3 79.7 79.7 79.8 79.8 79.9 79.9 80 80.1 80.2 80.2 80.2 80.3 80.3 80.4 80.5 80.5 80.6 80.6 80.7 80.8 80.8 81 81.1 81.2 81.3 81.5 81.7 81.8 81.9 81.9 82 82.1 82.2 82.4 82.5 83.2 83.3
Linking (CPU/UI) Baseline
Mean: 30.412 %
Stdev: 1.496 % (4.9%)
Runs: 26.9 27.9 28.2 28.3 28.4 28.5 28.5 28.5 28.7 28.8 28.9 29 29.2 29.2 29.3 29.4 29.5 29.6 29.6 29.6 29.7 29.8 29.8 29.8 29.9 29.9 30.1 30.2 30.2 30.3 30.3 30.5 30.6 30.6 30.6 30.6 30.7 30.8 30.8 31 31.2 31.2 31.2 31.3 31.3 31.4 31.6 31.8 31.9 31.9 32.2 32.2 32.2 32.4 32.8 32.8 33 33.2 33.2 33.7

Current
Mean: 30.523 %
Stdev: 1.641 % (5.4%)
Runs: 27.5 27.9 28 28 28.2 28.6 28.8 28.8 28.8 28.8 29 29 29.2 29.2 29.2 29.2 29.5 29.5 29.6 29.6 29.6 29.7 29.8 29.8 29.8 30 30 30.1 30.1 30.2 30.4 30.5 30.5 30.6 30.8 30.9 30.9 30.9 31 31.1 31.3 31.3 31.3 31.5 31.6 31.7 31.7 31.9 31.9 32.1 32.2 32.2 32.5 32.5 33.2 33.3 33.4 33.8 34.2 34.7

Copy link
Contributor

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

Copy link
Contributor

🚀 Deployed to production by https://github.com/mountiny in version: 9.0.67-9 🚀

platform result
🤖 android 🤖 skipped 🚫
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 success ✅
🤖🔄 android HybridApp 🤖🔄 failure ❌
🍎🔄 iOS HybridApp 🍎🔄 failure ❌

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CP Staging marks PRs that have been CP'd to staging DeployBlockerCash This issue or pull request should block deployment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants