From 9138c475cda1b40233160e5ec1ba9822bf1cf091 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Mon, 12 Dec 2016 15:55:49 -0500 Subject: [PATCH] Updated readme and main page to refelect version 1.3.2. --- source/index.html.haml | 2 +- source/introduction/getting-started.html.md | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/source/index.html.haml b/source/index.html.haml index f466599..5f426a0 100644 --- a/source/index.html.haml +++ b/source/index.html.haml @@ -7,7 +7,7 @@ description: Open-source framework for executing native Java code on the GPU. .row.center %a#download-button.btn-large.waves-effect.waves-light{:href => "/introduction/getting-started.html"} Get Started .row.center - %a.red-text.text-lighten-4{:href => "https://github.com/Syncleus/aparapi"} Release v1.3.1 + %a.red-text.text-lighten-4{:href => "https://github.com/Syncleus/aparapi"} Release v1.3.2 %br/ - content_for :banner do diff --git a/source/introduction/getting-started.html.md b/source/introduction/getting-started.html.md index 3cc58e8..6895cb3 100644 --- a/source/introduction/getting-started.html.md +++ b/source/introduction/getting-started.html.md @@ -13,7 +13,7 @@ Aparapi was originally a project conceived and developed by AMD corporation. It ## Support and Documentation -Aparapi Javadocs: [latest](http://www.javadoc.io/doc/com.aparapi/aparapi) - [1.3.1](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.1) - [1.3.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.0) - [1.2.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.2.0) - [1.1.2](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.2) - [1.1.1](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.1) - [1.1.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.0) - [1.0.0](http://www.javadoc.io/doc/com.syncleus.aparapi/aparapi/1.0.0) +Aparapi Javadocs: [latest](http://www.javadoc.io/doc/com.aparapi/aparapi) - [1.3.2](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.2) - [1.3.1](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.1) - [1.3.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.0) - [1.2.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.2.0) - [1.1.2](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.2) - [1.1.1](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.1) - [1.1.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.0) - [1.0.0](http://www.javadoc.io/doc/com.syncleus.aparapi/aparapi/1.0.0) For detailed documentation see [Aparapi.com](http://Aparapi.com) or check out the [latest Javadocs](http://www.javadoc.io/doc/com.aparapi/aparapi). @@ -35,7 +35,7 @@ This particular repository only represents the core Java library. There are seve Aparapi will run as-is on the CPU, however in order to access the GPU it requires OpenCL to be installed on the local system. If OpenCL isnt found then the library will just fallback to CPU mode. -**Aparapi runs on all operating systems and platforms, however GPU acceleration support is currently provided for the following platforms: Mac OSX 64bit, Linux 64bit, and Linux 32bit. Windows support coming in the next few days.** +**Aparapi runs on all operating systems and platforms, however GPU acceleration support is currently provided for the following platforms: Windows 64bit, Mac OSX 64bit, Linux 64bit, and Linux 32bit.** Note: It is no longer required to manually install the [Aparapi JNI native interface](https://github.com/Syncleus/aparapi-native), this is now done automatically through maven as a dependency on Aparapi. @@ -48,7 +48,7 @@ To include Aparapi in your project of choice include the following Maven depende <dependency> <groupId>com.aparapi</groupId> <artifactId>aparapi</artifactId> - <version>1.3.1</version> + <version>1.3.2</version> </dependency> ``` @@ -92,4 +92,5 @@ Kernel kernel = new Kernel() { Range range = Range.create(result.length); kernel.execute(range); -``` \ No newline at end of file +``` +` \ No newline at end of file -- GitLab