File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717env :
1818 PROJECT_NAME : " candlex"
1919 PROJECT_DIR : " native/candlex"
20- PROJECT_VERSION : " 0.1.6 "
20+ PROJECT_VERSION : " 0.1.7 "
2121 NIF_VERSION : " 2.16"
2222
2323jobs :
Original file line number Diff line number Diff line change @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 0.1.7] - 2023-12-01
9+
10+ ### Added
11+
12+ - ` Nx.put_slice ` , more complete support (#46 )
13+ - ` Nx.dot ` , support n x m (#51 )
14+ - ` Nx.take ` supports indices rank > 1 (#57 )
15+ - ` Nx.argsort ` basic support, only CPU (#59 )
16+ - ` Nx.pad ` , support tensors of rank > 1 (#61 )
17+ - ` Nx.pad ` supports negative padding (#62 )
18+ - ` Nx.window_max ` supports ` :same ` padding (#64 )
19+
820## [ 0.1.6] - 2023-11-24
921
1022### 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`:
1414``` elixir
1515def deps do
1616 [
17- {:candlex , " ~> 0.1.6 " }
17+ {:candlex , " ~> 0.1.7 " }
1818 ]
1919end
2020```
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ defmodule Candlex.MixProject do
33
44 @ description "An Nx backend for candle machine learning minimalist framework"
55 @ source_url "https://github.com/mimiquate/candlex"
6- @ version "0.1.6 "
6+ @ version "0.1.7 "
77
88 def project do
99 [
You can’t perform that action at this time.
0 commit comments