// Import imports the nodes and edges from a serialized representation of // another Graph into g. // // Names of imported nodes will be prefixed with prefix. func (g *Graph) Import(def []byte, prefix string) error { cprefix := C.CString(prefix) defer C.free(unsafe.Pointer(cprefix)) opts := C.TF_NewImportGraphDefOptions() defer C.TF_DeleteImportGraphDefOptions(opts) C.TF_ImportGraphDefOptionsSetPrefix(opts, cprefix) buf := C.TF_NewBuffer() defer C.TF_DeleteBuffer(buf) // Would have preferred to use C.CBytes, but that does not play well // with "go vet" till https://github.com/golang/go/issues/17201 is // resolved. buf.length = C.size_t(len(def)) buf.data = C.malloc(buf.length) if buf.data == nil { return fmt.Errorf("unable to allocate memory") } defer C.free(buf.data) C.memcpy(buf.data, unsafe.Pointer(&def[0]), buf.length) status := newStatus() C.TF_GraphImportGraphDef(g.c, buf, opts, status.c) if err := status.Err(); err != nil { return err } return nil }
func registeredOps() (*pb.OpList, error) { buf := C.TF_GetAllOpList() defer C.TF_DeleteBuffer(buf) var ( list = new(pb.OpList) size = int(buf.length) // A []byte backed by C memory. // See: https://github.com/golang/go/wiki/cgo#turning-c-arrays-into-go-slices data = (*[1 << 30]byte)(unsafe.Pointer(buf.data))[:size:size] err = proto.Unmarshal(data, list) ) return list, err }
// WriteTo writes out a serialized representation of g to w. // // Implements the io.WriterTo interface. func (g *Graph) WriteTo(w io.Writer) (int64, error) { buf := C.TF_NewBuffer() defer C.TF_DeleteBuffer(buf) status := newStatus() C.TF_GraphToGraphDef(g.c, buf, status.c) if err := status.Err(); err != nil { return 0, err } if buf.length > (1 << 30) { // For very large graphs, the writes can be chunked. // Punt on that for now. return 0, fmt.Errorf("Graph is too large to write out, Graph.WriteTo needs to be updated") } // A []byte slice backed by C memory. // See: https://github.com/golang/go/wiki/cgo#turning-c-arrays-into-go-slices length := int(buf.length) slice := (*[1 << 30]byte)(unsafe.Pointer(buf.data))[:length:length] n, err := w.Write(slice) return int64(n), err }