File tree 4 files changed +13
-4
lines changed
4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 17
17
env :
18
18
PROJECT_NAME : " candlex"
19
19
PROJECT_DIR : " native/candlex"
20
- PROJECT_VERSION : " 0.1.7 "
20
+ PROJECT_VERSION : " 0.1.8 "
21
21
NIF_VERSION : " 2.16"
22
22
23
23
jobs :
Original file line number Diff line number Diff line change @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 0.1.8] - 2023-12-11
9
+
10
+ ### Added
11
+
12
+ - ` Nx.argsort ` supports tensors rank = 2 (#66 )
13
+ - ` Nx.dot ` supports batched axes (#68 )
14
+ - ` Nx.window_sum ` support (#71 )
15
+ - ` Nx.dot ` more complete support for M x N tensors operation (#73 )
16
+
8
17
## [ 0.1.7] - 2023-12-01
9
18
10
19
### Added
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ by adding `candlex` to your list of dependencies in `mix.exs`:
14
14
``` elixir
15
15
def deps do
16
16
[
17
- {:candlex , " ~> 0.1.7 " }
17
+ {:candlex , " ~> 0.1.8 " }
18
18
]
19
19
end
20
20
```
@@ -80,7 +80,7 @@ then you can build with `CANDLEX_NIF_TARGET=cuda`. See the `CANDLEX_NIF_TARGET`
80
80
81
81
To publish a new version of this package:
82
82
83
- 1 . Update ` @ version` in ` mix.exs ` and ` PROJECT_VERSION ` in ` .github/workflows/binaries.yml ` .
83
+ 1 . Update version in ` mix.exs ` , ` .github/workflows/binaries.yml ` and ` README.md ` .
84
84
1 . ` git tag -s <tag-version> ` to create new signed tag.
85
85
1 . ` git push origin <tag-version> ` to push the tag.
86
86
1 . Wait for the ` binaries.yml ` GitHub workflow to build all the NIF binaries.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ defmodule Candlex.MixProject do
3
3
4
4
@ description "An Nx backend for candle machine learning minimalist framework"
5
5
@ source_url "https://github.com/mimiquate/candlex"
6
- @ version "0.1.7 "
6
+ @ version "0.1.8 "
7
7
8
8
def project do
9
9
[
You can’t perform that action at this time.
0 commit comments