Skip to content

Commit

Permalink
Release 0.5.0 (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
mats-claassen authored May 22, 2018
1 parent 73c4e5c commit 3a4c21b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Change Log
All notable changes to Bender will be documented in this file.

## [0.5.0](https://github.com/xmartlabs/Bender/releases/tag/0.5.0)

Added:

* BatchNorm
* Support for multiple inputs
* Add support for depthwise and atrous (dilated) convolutions in iOS 11
* Change some kernels to run on half instead of float
* Use MPSTemporaryImage by default

and some fixes.

## [0.4.1](https://github.com/xmartlabs/Bender/releases/tag/0.4.1)

* Support for Xcode 9.1.
Expand Down
2 changes: 1 addition & 1 deletion MetalBender.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "MetalBender"
s.version = "0.4.1"
s.version = "0.5.0"
s.summary = "Bender is an abstraction layer over MetalPerformanceShaders useful for working with neural networks."
s.homepage = "https://github.com/xmartlabs/Bender"
s.license = { type: 'MIT', file: 'LICENSE' }
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Follow these steps to run the examples:
* Open Bender workspace and run the *Example* project.

> There is an Image recognition example which includes a MobileNet model in Bender and one in CoreML. It is also set up to run an Inception model but you will have to download it separately as it is almost 100 MB in size.
You can download it from http://download.tensorflow.org/models/inception_v3_2016_08_28.tar.gz but then you have to freeze it and add it to the 'Example' Xcode project as 'inception_v3.pb'.
You can download it from http://download.tensorflow.org/models/inception_v3_2016_08_28.tar.gz but then you have to freeze it and add it to the 'Example' Xcode project as 'inception_v3.pb'.

## Installation

Expand All @@ -118,7 +118,7 @@ You can download it from http://download.tensorflow.org/models/inception_v3_2016
To install Bender, simply add the following line to your Podfile:

```ruby
pod 'MetalBender', '~> 0.4'
pod 'MetalBender', '~> 0.5'
```

> Remember that Bender compiles for iOS 10. So you must add `platform :ios, '10.0'` to your Podfile
Expand All @@ -130,7 +130,7 @@ pod 'MetalBender', '~> 0.4'
To install Bender, add the following line to your Cartfile:

```ogdl
github "xmartlabs/Bender" ~> 0.4
github "xmartlabs/Bender" ~> 0.5
```

Then run:
Expand Down

0 comments on commit 3a4c21b

Please sign in to comment.