Skip to content

Commit

Permalink
Changed address of the example page.
Browse files Browse the repository at this point in the history
  • Loading branch information
janpfeifer committed Jun 10, 2024
1 parent f596352 commit 94e62c1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![GoDev](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white)](https://pkg.go.dev/github.com/gomlx/bsplines?tab=doc)
[![GitHub](https://img.shields.io/github/license/gomlx/bsplines)](https://github.com/Kwynto/gosession/blob/master/LICENSE)

# [Example With Plots](https://gomlx.github.io/bsplines/)
# [Example With Plots](https://gomlx.github.io/bsplines/bsplines.html)

This library provides 2 implementations of [B-Spline](https://en.wikipedia.org/wiki/B-spline) using the same API: one that evaluates fully in Go (CPU, slower)
and one using [`GoMLX`](https://github.com/gomlx/gomlx) for ML and/or accelerators.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion gomlx/gomlx.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,6 @@ func (e *evalData) Extrapolation() (where, value *Node) {
LessThan(e.inputs, kFirst),
GreaterOrEqual(e.inputs, kLast))
where = ExpandAndBroadcast(where, []int{1}, []int{e.batchSize, e.numOutputs, e.numInputs})

return
}

0 comments on commit 94e62c1

Please sign in to comment.