All Versions
19
Latest Version
Avg Release Cycle
124 days
Latest Release
-
Changelog History
Page 1
Changelog History
Page 1
-
v2.0.1 Changes
- ๐ New Kernel.compile(...) methods for forcing pre-compilation of a kernel without executing it
- ๐ Fixed NPE bug for Kernel.getProfileReportCurrentThread(device) and similar methods
- ๐ Fixed bug where ClassModel would throw an error when loaded if boot strap methods were 0.
- โก๏ธ Updated the following dependency versions: ** org.apache.bcel:bcel 6.4.1 -< 6.5.0 ** org.scala-lang:scala-library 2.13.1 -> 2.13.3
-
v2.0.0 Changes
January 19, 2020- ๐ Fixed Potential JVM crash when using multi-dimensional arrays (> 1D)
- ๐ Fixed bug causing wrong Aparapi-native library to be loaded.
- Minimum Java JDK compatible is now 1.8 or higher, used to be 1.7
- โก๏ธ Updated the following dependency versions:
** com.aparapi: aparapi-jni 1.4.1 -> 1.4.2
** org.scala-lang: scala-library 2.12.6 -> 2.13.1
** net.alchim31.maven: scala-maven-plugin 3.4.1 -> 4.3.0
** org.apache.bcel: bcel 6.2 -> 6.4.1
-
v1.10.0 Changes
September 05, 2018- If statements with empty blocks and comparisons outside of if or while statements now compile and run on the GPU.
- ๐ Fix kernel management inconsistencies regarding preferred devices management
- ๐ Fix Java execution mode with barriers to not deadlock when a thread dies or is interrupted (InterruptedException)
- ๐ Fix Java execution mode to fail-fast when Kernel execution fails
- Java execution mode now provides detailed backtraces of failed Kernel threads including passId, groupIds, globalIds and localIds
- ๐ Internal translation of bytecode is now facilitated by the BCEL library
- ๐ Scala support has been added (see unit tests).
- Fix arrays of AtomicInteger stored on local variables no longer fail with type cast exception while generating OpenCL (support for I_ALOAD_0,1,2,3 bytecode instructions)
-
v1.9.0 Changes
April 27, 2018- ๐ Fixed local arrays handling 1D and ND, to cope with arrays resizing across kernel executions
- Significant speed-up on discrete GPUs with dedicated memory - OpenCLDevice.setSharedMemory(false)
- ๐ Now supports efficient execution on discrete GPU and other devices with dedicated memory
- ๐ Support for OpenCLDevice configurator/configure API
-
v1.8.0 Changes
April 25, 2018- โก๏ธ Updated KernelManager to facilitate class extensions having constructors with non static parameters
- Enable kernel profiling and execution simultaneously on multiple devices (multiple threads calling same kernel class on multiple devices)
- ๐ Fixed JVM crash when multi-dimensional arrays were used in Local memory (2D and 3D local arrays are now supported)
- ๐ Fixed bug where signed integer constants were being interpreted as unsigned values during Codegen.
-
v1.7.0 Changes
April 23, 2018- ๐ Fully support barrier() - localBarrier(), globalBarrier() and localGlobalBarrier() on OpenCL 1.2 and later.
- ๐ Improved exception handling, stack traces no longer double print and Error and other throwables are never caught.
- ๐ Fix issue causing SEVERE log messages on Aparapi kernel profiling under multithreading.
- Provide new interfaces for thread safe kernel profiling (mutiple threads calling same kernel class on same device).
- ๐ Fixed occasional deadlock in JTP execution mode.
- Significant speedup when running in JTP execution mode.
-
v1.6.0 Changes
April 16, 2018- โ Added support for Local arguments in kernel functions
- โ Added full support for atomic operations of arrays of integers on OpenCL 1.2 and later.
- Parent pom no longer points to a snapshot.
-
v1.5.0 Changes
February 12, 2018- ๐ Support for OpenCL 2.1 added.
- ๐ Support inline array creation in the kernel, which is implemented in the GPU in private memory.
- โก๏ธ Updated parent pom to v6.
- ๐ createProgram had the wrong signature producing a unsatisfied link exception that is now fixed.
- ๐ Build now requires version 3.5.0 of maven due to changes in surefire plugin.
- โ Added the functions popcount and clz
-
v1.4.1 Changes
September 17, 2017- ๐ Fixed NullPointerException when using KernelManger from the KernelManagers class
- Now requires maven 3.0.4 or later.
- โฌ๏ธ Bumped parent pom version to 4.
- โ Removed explicit versions from several plugins in the pom as these are defined in the parent.
-
v1.4.0 Changes
July 28, 2017- โก๏ธ Updated nexus stagin plugin: 1.6.7 -> 1.6.8
- โ Added Fused Multiply Add support.
- ๐ Fixed a bug whereby the library failed to load if OpenCL implementation isnt present, system now loads and falls back to native Java.
- ๐ Fixed several mistakes and typos in the various examples.