Function
bug
(format string, args ...interface{})
Source from the content-addressed store, hash-verified
| 465 | } |
| 466 | |
| 467 | func bug(format string, args ...interface{}) error { |
| 468 | return fmt.Errorf("BUG: Please report at https://github.com/tensorflow/tensorflow/issues with the note: Go TensorFlow %v: %v", Version(), fmt.Sprintf(format, args...)) |
| 469 | } |
| 470 | |
| 471 | func isTensorSerializable(dataType DataType) error { |
| 472 | // For numeric types, the serialized Tensor matches the in-memory |
Tested by
no test coverage detected