Home
last modified time | relevance | path

Searched refs:TF_ImportGraphDefOptions (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/c/
Dc_api.h928 typedef struct TF_ImportGraphDefOptions TF_ImportGraphDefOptions; typedef
930 TF_CAPI_EXPORT extern TF_ImportGraphDefOptions* TF_NewImportGraphDefOptions(
933 TF_ImportGraphDefOptions* opts);
939 TF_ImportGraphDefOptions* opts, const char* prefix);
945 TF_ImportGraphDefOptions* opts, const char* device);
953 TF_ImportGraphDefOptions* opts, unsigned char uniquify_names);
959 TF_ImportGraphDefOptions* opts, unsigned char uniquify_prefix);
966 TF_ImportGraphDefOptions* opts, const char* src_name, int src_index,
974 TF_ImportGraphDefOptions* opts, const char* src_name, TF_Operation* dst);
979 TF_ImportGraphDefOptions* opts, TF_Operation* oper);
[all …]
Dc_api.cc2021 TF_ImportGraphDefOptions* TF_NewImportGraphDefOptions() { in TF_NewImportGraphDefOptions()
2022 return new TF_ImportGraphDefOptions; in TF_NewImportGraphDefOptions()
2024 void TF_DeleteImportGraphDefOptions(TF_ImportGraphDefOptions* opts) { in TF_DeleteImportGraphDefOptions()
2027 void TF_ImportGraphDefOptionsSetPrefix(TF_ImportGraphDefOptions* opts, in TF_ImportGraphDefOptionsSetPrefix()
2031 void TF_ImportGraphDefOptionsSetDefaultDevice(TF_ImportGraphDefOptions* opts, in TF_ImportGraphDefOptionsSetDefaultDevice()
2036 void TF_ImportGraphDefOptionsSetUniquifyNames(TF_ImportGraphDefOptions* opts, in TF_ImportGraphDefOptionsSetUniquifyNames()
2041 void TF_ImportGraphDefOptionsSetUniquifyPrefix(TF_ImportGraphDefOptions* opts, in TF_ImportGraphDefOptionsSetUniquifyPrefix()
2046 void TF_ImportGraphDefOptionsAddInputMapping(TF_ImportGraphDefOptions* opts, in TF_ImportGraphDefOptionsAddInputMapping()
2057 TF_ImportGraphDefOptions* opts, const char* src_name, TF_Operation* dst) { in TF_ImportGraphDefOptionsRemapControlDependency()
2063 TF_ImportGraphDefOptions* opts, TF_Operation* oper) { in TF_ImportGraphDefOptionsAddControlDependency()
[all …]
Dc_api_internal.h144 struct TF_ImportGraphDefOptions { struct
Dc_api_test.cc679 TF_ImportGraphDefOptions* opts = TF_NewImportGraphDefOptions(); in TEST()
856 TF_ImportGraphDefOptions* opts = TF_NewImportGraphDefOptions(); in TEST()
907 TF_ImportGraphDefOptions* opts = TF_NewImportGraphDefOptions(); in TEST()
/external/tensorflow/tensorflow/java/src/main/native/
Dgraph_jni.cc92 TF_ImportGraphDefOptions* opts = TF_NewImportGraphDefOptions(); in Java_org_tensorflow_Graph_importGraphDef()