/external/sl4a/Docs/ |
D | generate_api_reference_md.py | 110 self._functions = collections.defaultdict(list) 179 self._functions[module].append(f) 197 for module in sorted(self._functions.keys()): 199 for func in self._functions[module]: 206 self._functions.values()):
|
/external/tensorflow/tensorflow/python/profiler/ |
D | pprof_profiler.py | 160 self._functions = functions 195 line.function_id = self._functions.index_of( 271 self._functions = Functions(self._string_table) 272 self._locations = Locations(self._functions) 361 pprof_profile.function.extend(self._functions.function_protos())
|
/external/tensorflow/tensorflow/python/eager/ |
D | wrap_function.py | 358 for f in self.graph._functions.values(): 463 self._functions = {} 467 return self._functions 558 self._functions[name] = wrapped_function
|
D | lift_to_graph.py | 120 f = base_graph._functions.get(op.type, None) 121 if f is not None and compat.as_str(f.name) not in graph._functions:
|
D | function_test.py | 2639 self.assertLen(graph._functions, 2) 2640 functions = list(graph._functions.values()) 2684 self.assertLen(graph._functions, 6) 2686 functions = list(graph._functions.values()) 2723 self.assertLen(graph._functions, 6) 2724 functions = list(graph._functions.values()) 2761 self.assertLen(graph._functions, 6) 2763 functions = list(graph._functions.values()) 2787 self.assertLen(graph._functions, 6) 2831 self.assertLen(graph._functions, 3) [all …]
|
D | function.py | 534 for f in self.graph._functions.values(): 1485 self._functions = functions 1492 forward_function = self._functions.forward( 1503 self._functions.record(
|
/external/ComputeLibrary/tests/validation/fixtures/UNIT/ |
D | DynamicTensorFixture.h | 428 _functions.emplace_back(support::cpp14::make_unique<ComplexFunctionType>(_ms.mm)); in run() 460 _functions[f]->configure(&tensors[f], &ws[f], nullptr, &tensors[f + 1], info); in run() 476 _functions[f]->run(); in run() 489 std::vector<std::unique_ptr<ComplexFunctionType>> _functions{};
|
/external/tensorflow/tensorflow/python/data/experimental/ops/ |
D | io.py | 167 def _functions(self): member in _SaveDataset 239 def _functions(self): member in _LoadDataset
|
D | grouping.py | 377 def _functions(self): member in _GroupByReducerDataset
|
D | prefetching_ops.py | 254 def _functions(self): member in _MapOnGpuDataset
|
D | batching.py | 372 def _functions(self): member in _MapAndBatchDataset
|
/external/tensorflow/tensorflow/python/saved_model/ |
D | save.py | 117 self._functions = object_identity.ObjectIdentityDictionary() 161 obj_functions = self._functions.get(obj, None) 165 self._functions[obj] = obj_functions 734 functions = list(graph._functions.values()) # pylint: disable=protected-access 1014 for fn_name in exported_graph._functions: # pylint: disable=protected-access
|
/external/tensorflow/tensorflow/python/data/ops/ |
D | dataset_ops.py | 327 for used_function in self._functions(): 347 def _functions(self): member in DatasetV2 3540 def _functions(self): member in DatasetV1Adapter 3541 return self._dataset._functions() # pylint: disable=protected-access 4954 def _functions(self): member in MapDataset 5004 def _functions(self): member in ParallelMapDataset 5035 def _functions(self): member in FlatMapDataset 5074 def _functions(self): member in InterleaveDataset 5142 def _functions(self): member in ParallelInterleaveDataset 5178 def _functions(self): member in FilterDataset [all …]
|
D | readers.py | 323 def _functions(self): member in ParallelInterleaveDataset
|
/external/tensorflow/tensorflow/python/keras/saving/saved_model/ |
D | save_impl.py | 412 self._functions = weakref.WeakValueDictionary() 464 for fn in self._functions.values(): 564 self._functions[name] = fn.wrapped_call
|
/external/tensorflow/tensorflow/python/data/benchmarks/ |
D | from_tensor_slices_benchmark.py | 50 def _functions(self): member in SingleThreadedFlatMapDataset
|
/external/tensorflow/tensorflow/python/framework/ |
D | convert_to_constants.py | 649 self._functions = { 666 return self._functions 709 for f in self._functions.values():
|
D | function_def_to_graph.py | 210 f = graph._functions.get(node_def.op, None) # pylint: disable=protected-access
|
D | ops.py | 3014 self._functions = collections.OrderedDict() 3336 for f in self._functions.values(): 3392 defined_function = self._functions[function_def.signature.name] 3478 return compat.as_str(name) in self._functions 3489 return self._functions.get(compat.as_str(name), None) 3520 self._functions[compat.as_str(name)] = function 6454 memory.dismantle_ordered_dict(graph._functions) # pylint: disable=protected-access
|
D | function.py | 411 self._sub_functions = temp_graph._functions
|
/external/tensorflow/tensorflow/python/ops/ |
D | while_v2.py | 1251 self._forward_graph._functions) 1265 self._forward_graph._functions):
|
/external/deqp/external/openglcts/modules/gles31/ |
D | es31cExplicitUniformLocationTest.cpp | 800 …SubroutineUniform(UniformValueGenerator& generator, SubroutineFunctionSet& _functions, Loc _locati… in SubroutineUniform() argument 802 : functions(_functions) in SubroutineUniform() 831 …SubroutineUniform(UniformValueGenerator& generator, SubroutineFunctionSet& _functions, Loc _locati… in SubroutineUniform() argument 834 : functions(_functions) in SubroutineUniform()
|
/external/python/cpython3/Modules/ |
D | _sre.c | 2853 static PyMethodDef _functions[] = { variable 2954 .m_methods = _functions,
|
/external/tensorflow/tensorflow/python/data/kernel_tests/ |
D | dataset_test.py | 278 self.assertLen(dataset._functions(), 1)
|
/external/python/cpython2/Modules/ |
D | _elementtree.c | 2960 static PyMethodDef _functions[] = { variable 2984 m = Py_InitModule("_elementtree", _functions);
|