-
Notifications
You must be signed in to change notification settings - Fork 457
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
Fix the inconsistency issue of LZ4 performance across different hardware during autotest. #2473
Conversation
c1d9ab3
to
ec2291f
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2473 +/- ##
==========================================
- Coverage 77.39% 77.33% -0.06%
==========================================
Files 420 420
Lines 22468 22456 -12
Branches 6321 6353 +32
==========================================
- Hits 17388 17367 -21
- Misses 3817 3818 +1
- Partials 1263 1271 +8 ☔ View full report in Codecov by Sentry. |
CMakeLists.txt
Outdated
@@ -53,8 +53,10 @@ endif () | |||
|
|||
if (MACOS OR IOS) | |||
option(PAG_BUILD_FRAMEWORK "Allow build framework" ON) | |||
set(PAG_USE_SYSTEM_LZ4 ON) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
你要加的是Option默认值,不能是Set,否则外部传入的就被你覆盖了。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👌
Fix the inconsistency issue of LZ4 performance across different hardware during autotest.