You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We just had a bug where getting cache sizes from lscpu broke from changes to lscpu. This was broken for 1.5 years without me noticing. The fields for cache, such as "l2_cache_size" where wrong:
We were getting:
# python string"256 KiB (8 instances)"
instead of:
# python int262144
If we update the test_actual, we can make sure we are getting sane results.
Make sure results are correct data types
Make sure results match regex pattern
The text was updated successfully, but these errors were encountered:
We just had a bug where getting cache sizes from lscpu broke from changes to lscpu. This was broken for 1.5 years without me noticing. The fields for cache, such as
"l2_cache_size"
where wrong:We were getting:
instead of:
If we update the test_actual, we can make sure we are getting sane results.
The text was updated successfully, but these errors were encountered: