We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
based on graviton optimization docs
i try to find the spesific code with grep -r __x86_64__ *. seems that the team isolate that into their own flag. which is great one for abstraction
grep -r __x86_64__ *
aeron-client/src/main/c/util/aeron_platform.h: #if defined(__x86_64__) aeron-client/src/main/cpp/util/Platform.h: #if defined(__x86_64__) aeron-client/src/main/cpp_wrapper/util/Platform.h: #if defined(__x86_64__)
so basically we just need to find AERON_CPU_X64 and AERON_CPU_ARM
AERON_CPU_X64
AERON_CPU_ARM
check the performance with perf
sudo dnf install perf
The text was updated successfully, but these errors were encountered:
No branches or pull requests
based on graviton optimization docs
i try to find the spesific code with
grep -r __x86_64__ *
. seems that the team isolate that into their own flag. which is great one for abstractionso basically we just need to find
AERON_CPU_X64
andAERON_CPU_ARM
check the performance with perf
The text was updated successfully, but these errors were encountered: