aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/go/operation_test.go
diff options
context:
space:
mode:
authorGravatar Martin Wicke <martin.wicke@gmail.com>2017-11-10 12:26:11 -0800
committerGravatar GitHub <noreply@github.com>2017-11-10 12:26:11 -0800
commitd0a5d885d61b837018cb931a4d577289acc826fc (patch)
treedd344e45c4eca857c02746ef50d990a9cd81ea69 /tensorflow/go/operation_test.go
parent047d7965d2877d7b55f4cdb0d0abdcd733f266a9 (diff)
Revert "Branch 175277161"
Diffstat (limited to 'tensorflow/go/operation_test.go')
-rw-r--r--tensorflow/go/operation_test.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/tensorflow/go/operation_test.go b/tensorflow/go/operation_test.go
index 7cba043af2..40c951ab8c 100644
--- a/tensorflow/go/operation_test.go
+++ b/tensorflow/go/operation_test.go
@@ -123,6 +123,14 @@ func TestOutputDataTypeAndShape(t *testing.T) {
[]int64{2, 3},
Double,
},
+ { // Matrix of Uint64
+ [][]uint64{
+ {1, 2, 3},
+ {4, 5, 6},
+ },
+ []int64{2, 3},
+ Uint64,
+ },
}
for idx, test := range testdata {
t.Run(fmt.Sprintf("#%d Value %T", idx, test.Value), func(t *testing.T) {