-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1231 from ArmDeveloperEcosystem/main
Production update
- Loading branch information
Showing
33 changed files
with
1,589 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
content/learning-paths/cross-platform/function-multiversioning/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
title: Learn about function multiversioning | ||
|
||
minutes_to_complete: 60 | ||
|
||
who_is_this_for: This is an advanced topic for developers interested in optimizing their C/C++ applications across Arm64 targets. | ||
|
||
learning_objectives: | ||
- Use hardware features to tune your applications at function level. | ||
- Create multiple versions of C/C++ functions for the targets that you intend to run applications on. | ||
- Assist the compiler in generating optimal code for the targets, or provide your own optimized versions at source level. | ||
- Automatically select the most appropriate function version at runtime. | ||
- Reuse your optimized application binaries across various targets. | ||
|
||
prerequisites: | ||
- Basic knowledge of GNU function attributes. | ||
- Familiarity with indirect functions (ifuncs). | ||
- Basic knowledge of loop vectorization. | ||
- Familiarity with Arm assembly. | ||
- A LLVM 19 compiler with runtime library support or GCC 14. | ||
|
||
author_primary: Alexandros Lamprineas | ||
|
||
### Tags | ||
skilllevels: Advanced | ||
subjects: Performance and Architecture | ||
armips: | ||
- Cortex-A | ||
- Neoverse | ||
tools_software_languages: | ||
- C/C++ | ||
operatingsystems: | ||
- Linux | ||
- Android | ||
- macOS | ||
|
||
### Cross-platform metadata only | ||
shared_path: true | ||
shared_between: | ||
- servers-and-cloud-computing | ||
- smartphones-and-mobile | ||
- laptops-and-desktops | ||
- embedded-systems | ||
|
||
# ================================================================================ | ||
# FIXED, DO NOT MODIFY | ||
# ================================================================================ | ||
weight: 1 # _index.md always has weight of 1 to order correctly | ||
layout: "learningpathall" # All files under learning paths have this same wrapper | ||
learning_path_main_page: "yes" # This should be surfaced when looking for related content. Only set for _index.md of learning path content. | ||
--- |
18 changes: 18 additions & 0 deletions
18
content/learning-paths/cross-platform/function-multiversioning/_next-steps.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
next_step_guidance: | ||
|
||
recommended_path: /learning-paths/PLACEHOLDER_CATEGORY/PLACEHOLDER_LEARNING_PATH/ | ||
|
||
further_reading: | ||
- resource: | ||
title: Arm C Language Extensions | ||
link: https://arm-software.github.io/acle/main/acle.html | ||
type: documentation | ||
|
||
# ================================================================================ | ||
# FIXED, DO NOT MODIFY | ||
# ================================================================================ | ||
weight: 21 # set to always be larger than the content in this path, and one more than 'review' | ||
title: "Next Steps" # Always the same | ||
layout: "learningpathall" # All files under learning paths have this same wrapper | ||
--- |
40 changes: 40 additions & 0 deletions
40
content/learning-paths/cross-platform/function-multiversioning/_review.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
review: | ||
- questions: | ||
question: > | ||
What is the main benefit of Function Multiversioning? | ||
answers: | ||
- I can reuse my binaries on different targets without sacrificing runtime performance. | ||
- My application binaries are smaller. | ||
correct_answer: 1 | ||
explanation: > | ||
The binaries produced can be reused on different targets, but they might be larger in size. | ||
- questions: | ||
question: > | ||
Can I implement versions of a function in separate translation units? | ||
answers: | ||
- Yes, function versions can spread across different translations units. | ||
- No, all of the functions must be in the same translation unit. | ||
correct_answer: 1 | ||
explanation: > | ||
There is no requirement for function versions to be defined in the same translation unit. However, they must all be declared in the translation unit which contains the definition of the default version. | ||
- questions: | ||
question: > | ||
Under what circumstances will two targets, one with SVE2 and one with SVE, run the same version of a function? | ||
answers: | ||
- The versioned function has versions for SVE2 and default only. | ||
- The versioned function has versions for SVE2, SVE and default only. | ||
- The versioned function has versions for SVE and default only. | ||
correct_answer: 3 | ||
explanation: > | ||
Answer 3 is the only one where the most specific version for both targets is the same, namely SVE. In answer 1, one target would pick SVE2 and the other default, and in answer two, one would pick SVE2 and the other SVE. | ||
# ================================================================================ | ||
# FIXED, DO NOT MODIFY | ||
# ================================================================================ | ||
title: "Review" # Always the same title | ||
weight: 20 # Set to always be larger than the content in this path | ||
layout: "learningpathall" # All files under learning paths have this same wrapper | ||
--- |
Oops, something went wrong.