MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / status

Struct status

tensorflow/go/status.go:28–30  ·  view source on GitHub ↗

status holds error information returned by TensorFlow. We convert all TF statuses to Go errors.

Source from the content-addressed store, hash-verified

26// status holds error information returned by TensorFlow. We convert all
27// TF statuses to Go errors.
28type status struct {
29 c *C.TF_Status
30}
31
32func newStatus() *status {
33 s := &status{C.TF_NewStatus()}

Callers 5

okMethod · 0.85
TEST_PFunction · 0.85
GetVariableToShapeMapMethod · 0.85
DebugStringMethod · 0.85

Calls

no outgoing calls

Tested by 1

TEST_PFunction · 0.68