HomeSort by relevance Sort by last modified time
    Searched refs:cprefix (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/java/src/main/native/
graph_jni.cc 95 const char* cprefix = env->GetStringUTFChars(prefix, &is_copy); local
96 TF_ImportGraphDefOptionsSetPrefix(opts, cprefix);
97 env->ReleaseStringUTFChars(prefix, cprefix);
171 const char* cprefix = nullptr; local
173 cprefix = env->GetStringUTFChars(prefix, nullptr);
176 TF_AddGradientsWithPrefix(g, cprefix, y.get(), ny, x.get(), nx, dx.get(),
179 env->ReleaseStringUTFChars(prefix, cprefix);
  /external/tensorflow/tensorflow/go/
graph.go 107 cprefix := C.CString(options.Prefix)
108 defer C.free(unsafe.Pointer(cprefix))
112 C.TF_ImportGraphDefOptionsSetPrefix(opts, cprefix)
192 cprefix *C.char
227 // If prefix is "", the C.TF_AddGradientsWithPrefix need cprefix to be nil but not ""
229 cprefix = C.CString(prefix)
230 defer C.free(unsafe.Pointer(cprefix))
233 C.TF_AddGradientsWithPrefix(g.c, cprefix, pcy, C.int(len(y)), pcx, C.int(len(x)), pcdx, status.c, pcdy)

Completed in 969 milliseconds