Home
last modified time | relevance | path

Searched refs:_functions (Results 1 – 25 of 37) sorted by relevance

12

/external/sl4a/Docs/
Dgenerate_api_reference_md.py110 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/
Dpprof_profiler.py160 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/
Dwrap_function.py358 for f in self.graph._functions.values():
463 self._functions = {}
467 return self._functions
558 self._functions[name] = wrapped_function
Dlift_to_graph.py120 f = base_graph._functions.get(op.type, None)
121 if f is not None and compat.as_str(f.name) not in graph._functions:
Dfunction_test.py2639 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 …]
Dfunction.py534 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/
DDynamicTensorFixture.h428 _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/
Dio.py167 def _functions(self): member in _SaveDataset
239 def _functions(self): member in _LoadDataset
Dgrouping.py377 def _functions(self): member in _GroupByReducerDataset
Dprefetching_ops.py254 def _functions(self): member in _MapOnGpuDataset
Dbatching.py372 def _functions(self): member in _MapAndBatchDataset
/external/tensorflow/tensorflow/python/saved_model/
Dsave.py117 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/
Ddataset_ops.py327 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 …]
Dreaders.py323 def _functions(self): member in ParallelInterleaveDataset
/external/tensorflow/tensorflow/python/keras/saving/saved_model/
Dsave_impl.py412 self._functions = weakref.WeakValueDictionary()
464 for fn in self._functions.values():
564 self._functions[name] = fn.wrapped_call
/external/tensorflow/tensorflow/python/data/benchmarks/
Dfrom_tensor_slices_benchmark.py50 def _functions(self): member in SingleThreadedFlatMapDataset
/external/tensorflow/tensorflow/python/framework/
Dconvert_to_constants.py649 self._functions = {
666 return self._functions
709 for f in self._functions.values():
Dfunction_def_to_graph.py210 f = graph._functions.get(node_def.op, None) # pylint: disable=protected-access
Dops.py3014 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
Dfunction.py411 self._sub_functions = temp_graph._functions
/external/tensorflow/tensorflow/python/ops/
Dwhile_v2.py1251 self._forward_graph._functions)
1265 self._forward_graph._functions):
/external/deqp/external/openglcts/modules/gles31/
Des31cExplicitUniformLocationTest.cpp800 …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.c2853 static PyMethodDef _functions[] = { variable
2954 .m_methods = _functions,
/external/tensorflow/tensorflow/python/data/kernel_tests/
Ddataset_test.py278 self.assertLen(dataset._functions(), 1)
/external/python/cpython2/Modules/
D_elementtree.c2960 static PyMethodDef _functions[] = { variable
2984 m = Py_InitModule("_elementtree", _functions);

12