Skip to content

Commit

Permalink
Meet 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
superbobry committed Sep 21, 2016
1 parent 8410a2f commit e224e90
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
7 changes: 5 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ Here you can see the full list of changes between each viktor release.
Version 0.3.4
-------------

Released on September 21st 2016

- Fixed a bug in `StridedMatrix2.toString`, which incorrectly rendered
large matrices, and unified the implementation with `StridedMatrix3`.
- Added NumPy-compatible serialization support.
- Switched to the first stable release of Boost.SIMD v4.16.9.0.

Version 0.3.3
-------------
Expand Down Expand Up @@ -95,7 +98,7 @@ Released on April 22nd 2016
also a `StridedVector`.
- Added `StridedVector.quantile` for (amortized) linear-time order
statistic queries.
- Added `StrudedVector.shuffle` for randomly permuting vector elements.
- Added `StridedVector.shuffle` for randomly permuting vector elements.

Version 0.1.4
-------------
Expand All @@ -110,7 +113,7 @@ Version 0.1.3
Technical release, released on February 1st 2016

- Renamed `StridedVector.sorted` to `argSort` to avoid confusion with
the `sorted` method on primitve arrays.
the `sorted` method on primitive arrays.

Version 0.1.2
-------------
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ repositories {
}

dependencies {
compile 'org.jetbrains.bio:viktor:0.3.3'
compile 'org.jetbrains.bio:viktor:0.3.4'
}

```
Expand Down
8 changes: 5 additions & 3 deletions gradle/boost-simd.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
ext {
boostSimdBranch = 'develop'
boostSimdBranch = 'v4.16.9.0'
boostSimdRoot = '4.16.9.0'
}

buildscript {
Expand Down Expand Up @@ -37,7 +38,7 @@ task downloadBoostSimd(type: de.undercouch.gradle.tasks.download.Download) {
task unzipBoostSimd(dependsOn: downloadBoostSimd, type: Copy) {
from zipTree(downloadBoostSimd.dest)
into buildDir
outputs.dir new File(buildDir, "boost.simd-$boostSimdBranch")
outputs.dir new File(buildDir, "$boostSimdRoot")
}

def nullOutputStream = new OutputStream() {
Expand All @@ -46,7 +47,8 @@ def nullOutputStream = new OutputStream() {
}

task installBoostSimd(dependsOn: unzipBoostSimd) {
def cmakeDir = new File(buildDir, "boost.simd-$boostSimdBranch/build")
def cmakeDir = new File(
buildDir, "boost.simd-$boostSimdRoot/build")
outputs.dir new File(buildDir, 'include/boost')
doLast {
cmakeDir.mkdirs()
Expand Down

0 comments on commit e224e90

Please sign in to comment.