Skip to content

Commit dac10c1

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents b4fde43 + da5e1e2 commit dac10c1

8 files changed

+144
-75
lines changed

api_matop.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package tensor
22

3-
import "github.com/pkg/errors"
3+
import (
4+
"github.com/pkg/errors"
5+
)
46

57
// this file handles matops. While by default most of these matops should already have been defined as part of the
68
// Tensor interface, not all are possible(for example, concatenating a sparse tensor), hence the need for the following functions

errors.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,10 @@ func handleNoOp(err error) error {
2121
if err == nil {
2222
return nil
2323
}
24-
25-
if _, ok := err.(NoOpError); !ok {
26-
return err
24+
if _, ok := err.(NoOpError); ok {
25+
return nil
2726
}
28-
return nil
27+
return err
2928
}
3029

3130
type errorIndices []int

errors_test.go

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package tensor
2+
3+
import (
4+
"github.com/pkg/errors"
5+
"github.com/stretchr/testify/assert"
6+
"testing"
7+
)
8+
9+
func TestHandleNoOp(t *testing.T) {
10+
otherErr := errors.New("other error")
11+
12+
assert.Equal(t, nil, handleNoOp(noopError{}))
13+
assert.Equal(t, nil, handleNoOp(nil))
14+
assert.Equal(t, otherErr, handleNoOp(otherErr))
15+
}

example_iterator_test.go

+77-52
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,77 @@
1-
package tensor
2-
3-
import "fmt"
4-
5-
// This is an example of how to use `IteratorFromDense` from a row-major Dense tensor
6-
func Example_iteratorRowmajor() {
7-
T := New(WithShape(2, 3), WithBacking([]float64{0, 1, 2, 3, 4, 5}))
8-
it := IteratorFromDense(T)
9-
fmt.Printf("T:\n%v\n", T)
10-
11-
for i, err := it.Start(); err == nil; i, err = it.Next() {
12-
fmt.Printf("i: %d, coord: %v\n", i, it.Coord())
13-
}
14-
15-
// Output:
16-
// T:
17-
// ⎡0 1 2⎤
18-
// ⎣3 4 5⎦
19-
//
20-
// i: 0, coord: [0 1]
21-
// i: 1, coord: [0 2]
22-
// i: 2, coord: [1 0]
23-
// i: 3, coord: [1 1]
24-
// i: 4, coord: [1 2]
25-
// i: 5, coord: [0 0]
26-
27-
}
28-
29-
// This is an example of using `IteratorFromDense` on a col-major Dense tensor. More importantly
30-
// this example shows the order of the iteration.
31-
func Example_iteratorcolMajor() {
32-
T := New(WithShape(2, 3), WithBacking([]float64{0, 1, 2, 3, 4, 5}), AsFortran(nil))
33-
it := IteratorFromDense(T)
34-
fmt.Printf("T:\n%v\n", T)
35-
36-
for i, err := it.Start(); err == nil; i, err = it.Next() {
37-
fmt.Printf("i: %d, coord: %v\n", i, it.Coord())
38-
}
39-
40-
// Output:
41-
// T:
42-
// ⎡0 2 4⎤
43-
// ⎣1 3 5⎦
44-
//
45-
// i: 0, coord: [0 1]
46-
// i: 2, coord: [0 2]
47-
// i: 4, coord: [1 0]
48-
// i: 1, coord: [1 1]
49-
// i: 3, coord: [1 2]
50-
// i: 5, coord: [0 0]
51-
52-
}
1+
package tensor
2+
3+
import "fmt"
4+
5+
// This is an example of how to use `IteratorFromDense` from a row-major Dense tensor
6+
func Example_iteratorRowmajor() {
7+
T := New(WithShape(2, 3), WithBacking([]float64{0, 1, 2, 3, 4, 5}))
8+
it := IteratorFromDense(T)
9+
fmt.Printf("T:\n%v\n", T)
10+
11+
for i, err := it.Start(); err == nil; i, err = it.Next() {
12+
fmt.Printf("i: %d, coord: %v\n", i, it.Coord())
13+
}
14+
15+
// Output:
16+
// T:
17+
// ⎡0 1 2⎤
18+
// ⎣3 4 5⎦
19+
//
20+
// i: 0, coord: [0 1]
21+
// i: 1, coord: [0 2]
22+
// i: 2, coord: [1 0]
23+
// i: 3, coord: [1 1]
24+
// i: 4, coord: [1 2]
25+
// i: 5, coord: [0 0]
26+
27+
}
28+
29+
// This is an example of using `IteratorFromDense` on a col-major Dense tensor. More importantly
30+
// this example shows the order of the iteration.
31+
func Example_iteratorcolMajor() {
32+
T := New(WithShape(2, 3), WithBacking([]float64{0, 1, 2, 3, 4, 5}), AsFortran(nil))
33+
it := IteratorFromDense(T)
34+
fmt.Printf("T:\n%v\n", T)
35+
36+
for i, err := it.Start(); err == nil; i, err = it.Next() {
37+
fmt.Printf("i: %d, coord: %v\n", i, it.Coord())
38+
}
39+
40+
// Output:
41+
// T:
42+
// ⎡0 2 4⎤
43+
// ⎣1 3 5⎦
44+
//
45+
// i: 0, coord: [0 1]
46+
// i: 2, coord: [0 2]
47+
// i: 4, coord: [1 0]
48+
// i: 1, coord: [1 1]
49+
// i: 3, coord: [1 2]
50+
// i: 5, coord: [0 0]
51+
52+
}
53+
54+
func ExampleSliceIter() {
55+
T := New(WithShape(3, 3), WithBacking(Range(Float64, 0, 9)))
56+
S, err := T.Slice(makeRS(1, 3), makeRS(1, 3))
57+
if err != nil {
58+
fmt.Printf("Err %v\n", err)
59+
return
60+
}
61+
fmt.Printf("S (requires iterator? %t)\n%v\n", S.(*Dense).RequiresIterator(), S)
62+
it := IteratorFromDense(S.(*Dense))
63+
for i, err := it.Start(); err == nil; i, err = it.Next() {
64+
fmt.Printf("i %d, coord %v\n", i, it.Coord())
65+
}
66+
67+
// Output:
68+
// S (requires iterator? true)
69+
// ⎡4 5⎤
70+
// ⎣7 8⎦
71+
//
72+
// i 0, coord [0 1]
73+
// i 1, coord [1 0]
74+
// i 3, coord [1 1]
75+
// i 4, coord [0 0]
76+
77+
}

internal/execution/keepsync.go

+3-9
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,12 @@ type NoOpError interface {
1919
NoOp() bool
2020
}
2121

22-
type noopError struct{}
23-
24-
func (e noopError) NoOp() bool { return true }
25-
func (e noopError) Error() string { return "NoOp" }
26-
2722
func handleNoOp(err error) error {
2823
if err == nil {
2924
return nil
3025
}
31-
32-
if _, ok := err.(NoOpError); !ok {
33-
return err
26+
if _, ok := err.(NoOpError); ok {
27+
return nil
3428
}
35-
return nil
29+
return err
3630
}

internal/execution/keepsync_test.go

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package execution
2+
3+
import (
4+
"github.com/pkg/errors"
5+
"github.com/stretchr/testify/assert"
6+
"testing"
7+
)
8+
9+
type noopError struct{}
10+
11+
func (e noopError) NoOp() bool { return true }
12+
func (e noopError) Error() string { return "NoOp" }
13+
14+
func TestHandleNoOp(t *testing.T) {
15+
otherErr := errors.New("other error")
16+
17+
assert.Equal(t, nil, handleNoOp(noopError{}))
18+
assert.Equal(t, nil, handleNoOp(nil))
19+
assert.Equal(t, otherErr, handleNoOp(otherErr))
20+
}

internal/storage/keepsync.go

+3-9
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,12 @@ type NoOpError interface {
1919
NoOp() bool
2020
}
2121

22-
type noopError struct{}
23-
24-
func (e noopError) NoOp() bool { return true }
25-
func (e noopError) Error() string { return "NoOp" }
26-
2722
func handleNoOp(err error) error {
2823
if err == nil {
2924
return nil
3025
}
31-
32-
if _, ok := err.(NoOpError); !ok {
33-
return err
26+
if _, ok := err.(NoOpError); ok {
27+
return nil
3428
}
35-
return nil
29+
return err
3630
}

internal/storage/keepsync_test.go

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package storage
2+
3+
import (
4+
"github.com/pkg/errors"
5+
"github.com/stretchr/testify/assert"
6+
"testing"
7+
)
8+
9+
type noopError struct{}
10+
11+
func (e noopError) NoOp() bool { return true }
12+
func (e noopError) Error() string { return "NoOp" }
13+
14+
func TestHandleNoOp(t *testing.T) {
15+
otherErr := errors.New("other error")
16+
17+
assert.Equal(t, nil, handleNoOp(noopError{}))
18+
assert.Equal(t, nil, handleNoOp(nil))
19+
assert.Equal(t, otherErr, handleNoOp(otherErr))
20+
}

0 commit comments

Comments
 (0)