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

cache cpu info in a file at boot. #261

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

bunnitha
Copy link

@bunnitha bunnitha commented Sep 19, 2024

Instrumented cpuinfo to read the populated cpu info data from cpuid.info file during initialization.
Consumers of the library or OEMs can trigger a oneshot service - cpuinfo-svc - during device boot to link libcpuinfo and
dump all cpu info related to processor, model, arch and isa capabilities into cpuid.info file.
This arrangement will limit cpuid() intrinsic calls (which causes VMX events and performance overhead) to only once during init of libcpuinfo at boot by cpuinfo-svc.

Its little tricky to count the exact number of VM-Exits caused by CPUID calls.
For this effect, we have written a script to run an Android (dummy) service
that loads libcpuinfo - first in original version and next in modified version.
libcpuinfo makes around 4 __cpuid() calls on each initialization.
So, to amplify the effect, we have run the dummy service 1000 times and timed the total
execution (4000 __cpuid() calls and 8000 VMX events) in nano second precision.
This test shows that there is a reduction of approx. 0.6% in time to execute libcpuinfo.

Also, we attempted to record the KVM event statistics using perf tool.
Perf records the stats during the execution of same script.
The data shows that approx. 20,000 kvm_cpuid events reduced in modified libcpuinfo calls.
We cannot assume that all the CPUID calls are contributed by our script.
We are only making a safe assumption that the proportional reduction is affected
by the modification we did. We had made all efforts to keep the test conditions
similar in both cases.

Please find attached the excel sheet containing the test data.
libcpuinfo_enhancement_test_data.xlsx

@bunnitha
Copy link
Author

Hi, requesting concerned moderator to take a look at this proposal and review the patch.
Intel wants Pytorch to adopt this solution so that it can later land in Chrome ARCVM tree.

Copy link
Contributor

@digantdesai digantdesai left a comment

Choose a reason for hiding this comment

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

Thank you for your contribution.

(1) tlb refactor should be in a different commit
(2) please add some tests for cpuid features
(3) update PR summary for performance data and rationale for Android vm-exit overhead reduction.

tlb variables are moved into a struct for clean and readable code.

Signed-off-by: Balakrishnan Unnithan <[email protected]>
@bunnitha bunnitha changed the title read cpu info from cpuid.info file. cache cpu info in a file at boot. Feb 4, 2025
@bunnitha
Copy link
Author

bunnitha commented Feb 4, 2025

separated tlb refactor codes and cpu info caching.

@bunnitha bunnitha requested a review from digantdesai February 13, 2025 04:13
Copy link
Contributor

@digantdesai digantdesai left a comment

Choose a reason for hiding this comment

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

Hello, apologies for a delay, can you help me understand,

(1) why does it have to be __ANDROID__ specific. And Why can't a Linux user use cpuinfo-svc?
(1.1) Does it have to be x86 specific? We don't have to use it for other ISAs, I don't have a too strong preference here.
(2) why a user facing "app" is in the src/x86/linux/ vs cpuinfo/tools?

@bunnitha
Copy link
Author

Thank you @digantdesai for your review.

Answer to (1) and (2):
The solution can be generic.
We have had it devised for ARCVM (Virtualized Android) on CrOS.
The deployment and validation have only been done on Android in x86 target (others are out of our scope).
To make sure the rest of the world don't break, we applied the ANDROID restriction.

@digantdesai
Copy link
Contributor

(2) why a user facing "app" is in the src/x86/linux/ vs cpuinfo/tools?
I am ok if you restrict caching to android + x86, but please move the "app" out of the src dir.

Instrumented cpuinfo to read the populated cpu info data
from cpuid.info file during initialization.
Consumers of the library or OEMs can trigger a oneshot service - cpuinfo-svc -
during device boot to link libcpuinfo and dump all cpu info related to
processor, model, arch and isa capabilities into cpuid.info file.
This arrangement will limit cpuid() intrinsic calls
(which causes VM-Exit events and performance overhead)
to only once during init of libcpuinfo at boot by cpuinfo-svc.

Signed-off-by: Balakrishnan Unnithan <[email protected]>
@bunnitha
Copy link
Author

bunnitha commented Mar 3, 2025

(2) why a user facing "app" is in the src/x86/linux/ vs cpuinfo/tools?
I am ok if you restrict caching to android + x86, but please move the "app" out of the src dir.

Agreed!
As suggested, app moved into tools/ folder

@bunnitha bunnitha requested a review from digantdesai March 3, 2025 04:32
Copy link
Contributor

@digantdesai digantdesai left a comment

Choose a reason for hiding this comment

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

I think we are getting pretty close. Left some minor comments. Thanks!

@bunnitha bunnitha requested a review from digantdesai March 21, 2025 13:55
@digantdesai
Copy link
Contributor

digantdesai commented Mar 21, 2025

PR LGTM. Left a comment about validation after loading from the file.
Please also check and make sure the CI is green. Thanks.

@bunnitha
Copy link
Author

0001-Cache-cpu-info-in-a-file-at-boot.patch
0001-Trigger-cpuinfo-svc-at-boot.patch
Complete patch to implement the solution in Android platform.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants