gotch/ts/print_test.go
2022-04-28 17:31:23 +10:00

20 lines
388 B
Go

package ts_test
import (
"fmt"
"testing"
"github.com/sugarme/gotch"
"github.com/sugarme/gotch/ts"
)
func TestTensor_Format(t *testing.T) {
shape := []int64{8, 8, 8}
numels := int64(8 * 8 * 8)
x := ts.MustArange(ts.IntScalar(numels), gotch.Float, gotch.CPU).MustView(shape, true)
fmt.Printf("%0.1f", x) // print truncated data
// fmt.Printf("%#0.1f", x) // print full data
}