forked from pool/adaptivecpp
* AdaptiveCpp 24.10 introduces additional JIT-time optimizations,
especially at the default ACPP_ADAPTIVITY_LEVEL=1 setting.
Users may see substantial performance improvements for some
kernels.
* ACPP_ALLOCATION_TRACKING=1 was added which can enable the JIT
compiler to include even more information about memory usage in
code generation, further improving performance in some cases.
* Added full support for the SYCL 2020 group algorithms library
in the default generic JIT compiler on all backends.
* Additional C++ parallel STL algorithms supported for offloading
* Introducing the acpp::algorithms library: The algorithms
underneath the C++ parallel STL offloading support are now also
documented and exposed on the SYCL level for users who wish to
invoke them from SYCL with a higher degree of control.
* Added framework for JIT-time reflection to generic JIT
compiler.
* New extensions:
~ AdaptiveCpp_restrict_ptr
~ AdaptiveCpp_jit::compile_if
- Remove requirement on LLVM 18 and update version
- Renamed libraries to libacpp-*
- Deleted 0002-CMake-acpp-clang-to-MODULE.patch: upstreamed
OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/adaptivecpp?expand=0&rev=9
21 lines
380 B
Diff
21 lines
380 B
Diff
diff --git a/bin/acpp b/bin/acpp
|
|
index 2368348..bab3917 100755
|
|
--- a/bin/acpp
|
|
+++ b/bin/acpp
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python3
|
|
+#!/usr/bin/python3
|
|
|
|
'''
|
|
*
|
|
diff --git a/cmake/syclcc-launcher b/cmake/syclcc-launcher
|
|
index b56341c..6083201 100755
|
|
--- a/cmake/syclcc-launcher
|
|
+++ b/cmake/syclcc-launcher
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python3
|
|
+#!/usr/bin/python3
|
|
|
|
"""
|
|
*
|