Skip to content

Commit 59be03d

Browse files
committed
Coordinated release: JNAerator 0.11, BridJ 0.6.2
1 parent c49f17d commit 59be03d

File tree

19 files changed

+49
-27
lines changed

19 files changed

+49
-27
lines changed

Blas/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.nativelibs4java</groupId>
1212
<artifactId>javacl-parent</artifactId>
13-
<version>1.0-SNAPSHOT</version>
13+
<version>1.0</version>
1414
<relativePath>..</relativePath>
1515
</parent>
1616

CHANGELOG

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,28 @@ Current development version (1.0-SNAPSHOT)
66
- Optimized low-level bindings on OpenCL 1.1+ platforms, with dynamic runtime switch (removed synchronized keyword from all native calls)
77
- Optimized performance of many calls (CLKernel.setArgs/enqueueNDRange, CLBuffer.read/write...)
88

9+
- Update ATI download link
10+
- Ignore mismatching byte order for byte buffers, and replaced mentions to getKernelsDefaultByteOrder() by ge (issue #336)
11+
- Run tests on all detected devices, rather than just on the best one
12+
- List devices in program errors
13+
- Better CLDevice.toString (include platform name)
14+
- Disabled byte order hack
15+
- Fixed nasty regression in getBestDevice !
16+
- Fixed ati byte order hack
17+
- Fixed byte order hack for ATI platforms
18+
- Started deprecating CLKernel.enqueueNDRange with int[] parameters
19+
- Added CLBuffer.allocateCompatibleMemory(CLDevice)
20+
- Added client properties to CLContext (lazy + concurrent)
21+
- Fixes / optimized event callbacks (but broke API: CLEvent.EventCallback now only takes the completion status as argument, not the event anymore)
22+
- Un-deprecated + fixed CLContext.getKernelsDefaultByteOrder() ;
23+
- Return CLUserEvent from CLContext.createUserEvent();
24+
- Make OpenCL 1.0 synchronization a warning
25+
- Adapted Linux library loading code to AMD App 2.7
26+
- Fixed library probe
27+
- Factorized some javadoc with macros
28+
- Finish renaming
29+
- Renamed getEntityPeer() to getEntity()
30+
931
Version 1.0.0-RC2 (20120415, commit 6bc061dfce06b941086a29f696195e82fbaffbdc)
1032

1133
- Release artifacts are available in Maven Central
@@ -23,7 +45,7 @@ Version 1.0.0-RC2 (20120415, commit 6bc061dfce06b941086a29f696195e82fbaffbdc)
2345
- Added -cl-nv-verbose, -cl-nv-maxrregcount, -cl-nv-opt-level + proper log even without error when nv-verbose is set
2446
- Enhanced handling of endianness : warn when creating contexts with devices that have mismatching endianness, throw when creating buffer out of Buffer / Pointer with bad endianness
2547
- Changed signature of CLPlatform.listDevices (now takes a single CLDevice.Type, including All, instead of an EnumSet thereof)
26-
- Moved sources to github (https://github.com/ochafik/nativelibs4java/tree/master/libraries/OpenCL)
48+
- Moved sources to github (https://github.com/ochafik/nativelibs4java/tree/master/libraries/OpenCL)
2749

2850
Version 1.0.0-RC1 (r2130, 20110621)
2951

Core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ For more info, please visit http://code.google.com/p/nativelibs4java/wiki/OpenCL
1717
<parent>
1818
<groupId>com.nativelibs4java</groupId>
1919
<artifactId>javacl-parent</artifactId>
20-
<version>1.0-SNAPSHOT</version>
20+
<version>1.0</version>
2121
<relativePath>..</relativePath>
2222
</parent>
2323

@@ -30,7 +30,7 @@ For more info, please visit http://code.google.com/p/nativelibs4java/wiki/OpenCL
3030
<dependency>
3131
<groupId>com.nativelibs4java</groupId>
3232
<artifactId>nativelibs4java-utils</artifactId>
33-
<version>1.5-SNAPSHOT</version>
33+
<version>1.5</version>
3434
</dependency>
3535
</dependencies>
3636

Demos/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.nativelibs4java</groupId>
1313
<artifactId>javacl-parent</artifactId>
14-
<version>1.0-SNAPSHOT</version>
14+
<version>1.0</version>
1515
<relativePath>..</relativePath>
1616
</parent>
1717

Generator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.nativelibs4java</groupId>
1313
<artifactId>javacl-parent</artifactId>
14-
<version>1.0-SNAPSHOT</version>
14+
<version>1.0</version>
1515
<relativePath>..</relativePath>
1616
</parent>
1717

InteractiveImageDemo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.nativelibs4java</groupId>
1313
<artifactId>javacl-parent</artifactId>
14-
<version>1.0-SNAPSHOT</version>
14+
<version>1.0</version>
1515
<relativePath>..</relativePath>
1616
</parent>
1717

JavaCL-OSGi/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@
55
<artifactId>javacl-osgi</artifactId>
66
<name>JavaCL OSGi Bundle</name>
77
<url>http://code.google.com/p/javacl/</url>
8-
<version>1.0-SNAPSHOT</version>
8+
<version>1.0</version>
99
<packaging>bundle</packaging>
1010

1111
<parent>
1212
<groupId>com.nativelibs4java</groupId>
1313
<artifactId>nativelibs4java-parent</artifactId>
14-
<version>1.8-SNAPSHOT</version>
14+
<version>1.8</version>
1515
<relativePath>../..</relativePath>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>com.nativelibs4java</groupId>
2121
<artifactId>javacl-shaded</artifactId>
22-
<version>1.0-SNAPSHOT</version>
22+
<version>1.0</version>
2323
<!--classifier>shaded</classifier-->
2424
</dependency>
2525
<dependency>

JavaCL-Shaded/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<artifactId>javacl-shaded</artifactId>
66
<name>JavaCL Shaded</name>
77
<url>http://code.google.com/p/javacl/</url>
8-
<version>1.0-SNAPSHOT</version>
8+
<version>1.0</version>
99
<packaging>jar</packaging>
1010

1111
<parent>
1212
<groupId>com.nativelibs4java</groupId>
1313
<artifactId>nativelibs4java-parent</artifactId>
14-
<version>1.8-SNAPSHOT</version>
14+
<version>1.8</version>
1515
<relativePath>../..</relativePath>
1616
</parent>
1717

@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.nativelibs4java</groupId>
2525
<artifactId>javacl</artifactId>
26-
<version>1.0-SNAPSHOT</version>
26+
<version>1.0</version>
2727
</dependency>
2828

2929
</dependencies>

JavaCL/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ For more info, please visit http://code.google.com/p/nativelibs4java/wiki/OpenCL
1717
<parent>
1818
<groupId>com.nativelibs4java</groupId>
1919
<artifactId>javacl-parent</artifactId>
20-
<version>1.0-SNAPSHOT</version>
20+
<version>1.0</version>
2121
<relativePath>..</relativePath>
2222
</parent>
2323

LibCL/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<groupId>com.nativelibs4java</groupId>
1717
<artifactId>javacl-parent</artifactId>
18-
<version>1.0-SNAPSHOT</version>
18+
<version>1.0</version>
1919
<relativePath>..</relativePath>
2020
</parent>
2121

0 commit comments

Comments
 (0)