Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tynanbe committed Nov 20, 2022
1 parent 1e6084c commit 78a619c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 22 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## v0.3.0 - 2022-11-20

- The `tensor` module gains the `TensorResult` type; the `from_bool` and
`from_bools` creation functions; the `size` reflection function; the `squeeze`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ $ gleam add argamak
```elixir
defp deps do
[
{:argamak, "~> 0.2"},
{:argamak, "~> 0.3"},
]
end
```
Expand All @@ -43,7 +43,7 @@ end

```erlang
{deps, [
{argamak, "0.2.0"}
{argamak, "0.3.0"}
]}.
```

Expand Down
2 changes: 1 addition & 1 deletion gleam.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "argamak"
version = "0.3.0-dev"
version = "0.3.0"
description = "A tensor library for the Gleam programming language"
licences = ["Apache-2.0"]

Expand Down
18 changes: 0 additions & 18 deletions src/argamak/tensor.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,6 @@ pub fn broadcast_over(
|> result.all
let axis_map = map.from_list(mapped_axes)

// TODO: use higher level functions?
let pre_shape =
new_axes
|> list.map(with: fn(axis) {
Expand Down Expand Up @@ -3592,23 +3591,6 @@ pub fn in_situ_mean(
reducible_over_axes(do_mean, x, filter, InSitu)
}

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
// Slicing & Joining Functions //
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//

// TODO
// concat
// take
// take_along_axis
// gather
// reverse
// slice
// put_slice
// split
// tile
// stack
// unstack

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
// Conversion Functions //
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
Expand Down

0 comments on commit 78a619c

Please sign in to comment.