Home
last modified time | relevance | path

Searched refs:_dtypes (Results 1 – 15 of 15) sorted by relevance

/external/tensorflow/tensorflow/python/ops/signal/
Dfft_ops.py22 from tensorflow.python.framework import dtypes as _dtypes unknown
43 return _ops.convert_to_tensor(fft_shape.as_list(), _dtypes.int32)
61 return _ops.convert_to_tensor(fft_length, _dtypes.int32)
120 preferred_dtype=_dtypes.float32)
121 if input_tensor.dtype not in (_dtypes.float32, _dtypes.float64):
126 if real_dtype == _dtypes.float32:
127 complex_dtype = _dtypes.complex64
129 assert real_dtype == _dtypes.float64
130 complex_dtype = _dtypes.complex128
135 fft_length = _ops.convert_to_tensor(fft_length, _dtypes.int32)
[all …]
Ddct_ops.py22 from tensorflow.python.framework import dtypes as _dtypes unknown
114 padding = _ops.convert_to_tensor(padding, dtype=_dtypes.int32)
/external/tensorflow/tensorflow/python/ops/
Ddata_flow_ops.py27 from tensorflow.python.framework import dtypes as _dtypes unknown
160 self._dtypes = dtypes
166 self._shapes = [tensor_shape.unknown_shape() for _ in self._dtypes]
240 return self._dtypes
289 for i, (val, dtype) in enumerate(zip(vals, self._dtypes)):
343 if self._queue_ref.dtype == _dtypes.resource:
443 if self._queue_ref.dtype == _dtypes.resource:
445 self._queue_ref, self._dtypes, name=name)
448 self._queue_ref, self._dtypes, name=name)
488 self._queue_ref, n=n, component_types=self._dtypes, name=name)
[all …]
/external/tensorflow/tensorflow/lite/python/
Dlite.py76 from tensorflow.python.framework import dtypes as _dtypes unknown
234 self._smallest_supported_type() == _dtypes.int8)
271 self._smallest_supported_type() == _dtypes.int8)
275 self._smallest_supported_type() == _dtypes.float16)
284 return _dtypes.int16 if self._is_int16x8_target_required() \
285 else _dtypes.int8
294 "inference_input_type": _dtypes.float32,
300 "inference_type": _dtypes.float32,
301 "inference_input_type": _dtypes.float32,
307 "inference_type": _dtypes.float32,
[all …]
Dop_hint.py84 from tensorflow.python.framework import dtypes as _dtypes unknown
1021 _attr_value_pb2.AttrValue(type=_dtypes.float32.as_datatype_enum))
1024 tensor=_tensor_util.make_tensor_proto([-1], _dtypes.float32, [1])))
/external/tensorflow/tensorflow/python/summary/
Dsummary.py41 from tensorflow.python.framework import dtypes as _dtypes unknown
225 sample_rate, dtype=_dtypes.float32, name='sample_rate')
260 if tensor.dtype != _dtypes.string:
/external/tensorflow/tensorflow/python/framework/
Ddtypes.py28 from tensorflow.python import _dtypes
37 class DType(_dtypes.DType):
213 __hash__ = _dtypes.DType.__hash__
646 if isinstance(type_value, _dtypes.DType):
Ddtypes.cc62 PYBIND11_MODULE(_dtypes, m) { in PYBIND11_MODULE() argument
Ddtypes_test.py24 from tensorflow.python import _dtypes
72 dtype = _dtypes.DType(datatype_enum)
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.-d-type.pbtxt4 is_instance: "<class \'tensorflow.python._dtypes.DType\'>"
Dtensorflow.dtypes.-d-type.pbtxt4 is_instance: "<class \'tensorflow.python._dtypes.DType\'>"
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.dtypes.-d-type.pbtxt4 is_instance: "<class \'tensorflow.python._dtypes.DType\'>"
Dtensorflow.-d-type.pbtxt4 is_instance: "<class \'tensorflow.python._dtypes.DType\'>"
/external/tensorflow/tensorflow/python/training/
Dinput.py659 def _dtypes(tensor_list_list): function
776 types = _dtypes([tensor_list])
816 types = _dtypes(tensor_list_list)
855 types = _dtypes([tensor_list])
897 types = _dtypes(tensor_list_list)
/external/tensorflow/tensorflow/python/
DBUILD849 name = "_dtypes",
851 module_name = "_dtypes",
865 ":_dtypes",