HomeSort by relevance Sort by last modified time
    Searched refs:FunctionDef (Results 101 - 125 of 154) sorted by null

1 2 3 45 6 7

  /external/tensorflow/tensorflow/python/saved_model/
function_deserialization.py 295 """Fixes a FunctionDef proto to be loaded in current context.
301 orig_fdef: FunctionDef proto to fix. It is not modified.
309 A fixed copy of the original FunctionDef.
311 fdef = function_pb2.FunctionDef()
  /external/tensorflow/tensorflow/compiler/tf2xla/
functionalize_while.cc 242 // Copy the FunctionDef of given function from lookup_library to library, if
255 Status AddMissingFunctionDef(const FunctionDef& fdef,
480 // before they are encapsulated in FunctionDef.
501 FunctionDef cond_fdef;
504 FunctionDef body_fdef;
  /external/tensorflow/tensorflow/core/common_runtime/
process_function_library_runtime_test.cc 68 void Init(const std::vector<FunctionDef>& flib) {
567 const FunctionDef& def = test::function::FuncWithListInput();
582 const FunctionDef& def = test::function::FuncWithListOutput();
lower_while_op.cc 378 const FunctionDef* fdef = lib.Find(n->type_string());
graph_execution_state.cc 702 for (const FunctionDef& fdef : new_graph.library().function()) {
    [all...]
placer_test.cc     [all...]
  /external/tensorflow/tensorflow/python/autograph/pyct/
cfg.py 75 if isinstance(self.ast_node, gast.FunctionDef):
657 # We also keep the FunctionDef node in the CFG. This allows us to determine
681 self._process_exit_statement(node, gast.FunctionDef)
699 try_node, guards = self._get_enclosing_finally_scopes((gast.FunctionDef,))
701 raise ValueError('%s that is not enclosed by any FunctionDef' % node)
  /external/python/cpython3/Lib/test/
test_ast.py 32 # FunctionDef
34 # FunctionDef with docstring
36 # FunctionDef with arg
38 # FunctionDef with arg and default value
40 # FunctionDef with varargs
42 # FunctionDef with kwargs
44 # FunctionDef with all kind of args and docstring
682 f = ast.FunctionDef("x", a, [], [], None)
683 self.stmt(f, "empty body on FunctionDef")
684 f = ast.FunctionDef("x", a, [ast.Pass()], [ast.Name("x", ast.Store())]
    [all...]
  /external/tensorflow/tensorflow/compiler/jit/
build_xla_ops_pass.cc 281 const FunctionDef* func_def = flib_def.Find(function_name);
encapsulate_subgraphs_pass.cc 162 // Build a FunctionDef for each subgraph, and add it 'library'. The values of
249 // Builds a FunctionDef, and adds it to 'library'. The value of the
453 // into a FunctionDef. Inputs are fed by _Arg nodes, and outputs are
    [all...]
encapsulate_subgraphs_pass_test.cc 57 FunctionDef* fdef = library->add_function();
185 bool EqualFunctionDef(const FunctionDef& a, const FunctionDef& b,
260 std::unordered_map<string, const FunctionDef*> actual_index;
261 for (const FunctionDef& function : actual.function()) {
265 for (const FunctionDef& expected_function : expected.function()) {
551 for (FunctionDef& fdef : *library->mutable_function()) {
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/eager/
kernel_and_device.cc 83 const FunctionDef* function_def;
86 // lookup the FunctionDef in the CPU's FLR. All FLRs share the same
  /external/tensorflow/tensorflow/core/framework/
dataset.cc 260 const FunctionDef* f_def = ctx->flib_def().Find(function_name);
262 return errors::InvalidArgument("Unable to find FunctionDef for ",
  /external/tensorflow/tensorflow/core/ops/
resource_variable_ops.cc 165 Status ReadGrad(const AttrSlice& attrs, FunctionDef* g) {
  /external/tensorflow/tensorflow/tools/graph_transforms/
summarize_graph_main.cc 258 for (const FunctionDef& function : graph.library().function()) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Python-ast.h 77 } FunctionDef;
383 #define FunctionDef(a0, a1, a2, a3, a4, a5, a6) _Py_FunctionDef(a0, a1, a2, a3, a4, a5, a6)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Python-ast.h 77 } FunctionDef;
383 #define FunctionDef(a0, a1, a2, a3, a4, a5, a6) _Py_FunctionDef(a0, a1, a2, a3, a4, a5, a6)
  /external/python/cpython2/Include/
Python-ast.h 77 } FunctionDef;
383 #define FunctionDef(a0, a1, a2, a3, a4, a5, a6) _Py_FunctionDef(a0, a1, a2, a3, a4, a5, a6)
  /external/python/cpython3/Include/
Python-ast.h 83 } FunctionDef;
450 #define FunctionDef(a0, a1, a2, a3, a4, a5, a6, a7) _Py_FunctionDef(a0, a1, a2, a3, a4, a5, a6, a7)
  /external/tensorflow/tensorflow/c/
c_api_experimental.cc 35 using tensorflow::FunctionDef;
143 // If `mutate_proto_func` is non-NULL, run it over each FunctionDef proto,
147 std::function<void(FunctionDef*)>* mutate_proto_func, TF_Status* status) {
162 for (const FunctionDef& fdef : fdef_lib.function()) {
164 FunctionDef fdef_to_load = fdef;
    [all...]
c_api_function.cc 164 FunctionDef* fdef) {
253 // attribute to FunctionDef signature.
297 // Graph to FunctionDef conversion. This code is closely modeled on the Python
307 const char* description, FunctionDef* fdef) {
362 // FunctionDef.node_def in function.proto). We do the
700 "Invalid FunctionDef given to TF_FunctionImportFunctionDef");
c_test_util.cc 412 bool GetFunctionDef(TF_Function* func, tensorflow::FunctionDef* func_def) {
446 for (const tensorflow::FunctionDef& func : graph_def.library().function()) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
compile.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
compile.c     [all...]
  /external/python/cpython2/Python/
compile.c     [all...]

Completed in 1729 milliseconds

1 2 3 45 6 7