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
The Compute Library is a collection of low-level machine learning functions optimized for Arm® Cortex®-A, Arm® Neoverse® and Arm® Mali™ GPUs architectures.<br>
Please refer to the following link for more pre-built binaries: [](https://github.com/ARM-software/ComputeLibrary/releases/tag/v24.09)
68
+
Please refer to the following link for more pre-built binaries: [](https://github.com/ARM-software/ComputeLibrary/releases/tag/v24.11)
69
69
70
70
Pre-build binaries are generated with the following security / good coding practices related flags:
@@ -107,13 +107,13 @@ Pre-build binaries are generated with the following security / good coding pract
107
107
108
108
## Experimental builds
109
109
110
-
**⚠ Important** Bazel and CMake builds are experimental CPU only builds, please see the [documentation](https://artificial-intelligence.sites.arm.com/computelibrary/v24.09/how_to_build.xhtml) for more details.
110
+
**⚠ Important** Bazel and CMake builds are experimental CPU only builds, please see the [documentation](https://artificial-intelligence.sites.arm.com/computelibrary/v24.11/how_to_build.xhtml) for more details.
111
111
112
112
<br>
113
113
114
114
## How to contribute
115
115
116
-
Contributions to the Compute Library are more than welcome. If you are interested on contributing, please have a look at our [how to contribute guidelines](https://artificial-intelligence.sites.arm.com/computelibrary/v24.09/contribution_guidelines.xhtml).
116
+
Contributions to the Compute Library are more than welcome. If you are interested on contributing, please have a look at our [how to contribute guidelines](https://artificial-intelligence.sites.arm.com/computelibrary/v24.11/contribution_guidelines.xhtml).
117
117
118
118
### Developer Certificate of Origin (DCO)
119
119
Before the Compute Library accepts your contribution, you need to certify its origin and give us your permission. To manage this process we use the Developer Certificate of Origin (DCO) V1.1 (https://developercertificate.org/)
Copy file name to clipboardExpand all lines: SConstruct
+6-15Lines changed: 6 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,6 @@ vars.AddVariables(
116
116
PathVariable("build_dir", "Specify sub-folder for the build", ".", PathVariable.PathAccept),
117
117
PathVariable("install_dir", "Specify sub-folder for the install", "", PathVariable.PathAccept),
118
118
BoolVariable("exceptions", "Enable/disable C++ exception support", True),
119
-
BoolVariable("high_priority", "Generate a library containing only the high priority operators", False),
120
119
PathVariable("linker_script", "Use an external linker script", "", PathVariable.PathAccept),
121
120
PathVariable("external_tests_dir", """Add examples, benchmarks and tests to the tests suite from an external path. In order to use this option, the external tests directory must have the following structure:
122
121
EXTERNAL_TESTS_DIR:
@@ -519,21 +518,11 @@ if not GetOption("help"):
519
518
# Thus for backward compatibility, we include this flag only for NDK < r23
520
519
env.Append(CXXFLAGS= ['-no-integrated-as'])
521
520
522
-
ifenv['high_priority'] andenv['build_config']:
523
-
print("The high priority library cannot be built in conjunction with a user-specified build configuration")
0 commit comments