Home
last modified time | relevance | path

Searched refs:first_value (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/core/framework/
Dshape_inference.cc1039 const int64 first_value = Value(first); in Add() local
1042 if (first_value == 0) { in Add()
1046 } else if (first_value == kUnknownDim || second_value == kUnknownDim) { in Add()
1053 const int64 sum = static_cast<uint64>(first_value) + second_value; in Add()
1056 first_value, " and ", second_value); in Add()
1066 const int64 first_value = Value(first); in Subtract() local
1071 } else if (first_value == kUnknownDim || second_value == kUnknownDim) { in Subtract()
1076 if (first_value < second_value) { in Subtract()
1079 " from ", first_value); in Subtract()
1081 *out = MakeDim(first_value - second_value); in Subtract()
[all …]
/external/tensorflow/tensorflow/python/autograph/core/
Dconverter.py305 first_value = arg_values_found[0]
307 if not ast_util.matches(first_value, other_value):
312 compiler.ast_to_source(first_value).strip()))
313 return first_value
/external/tensorflow/tensorflow/core/common_runtime/
Ddirect_session_test.cc699 Tensor first_value(DT_FLOAT, TensorShape({})); in TEST() local
700 first_value.scalar<float>()() = 1.0; in TEST()
701 Node* first_const = test::graph::Constant(&g, first_value); in TEST()
772 Tensor first_value(DT_FLOAT, TensorShape({})); in TEST() local
773 first_value.scalar<float>()() = 1.0; in TEST()
774 Node* first_const = test::graph::Constant(&g, first_value); in TEST()
934 Tensor first_value(DT_FLOAT, TensorShape({})); in TEST() local
935 first_value.scalar<float>()() = 1.0; in TEST()
936 Node* first_const = test::graph::Constant(&g, first_value); in TEST()
1123 Tensor first_value(DT_FLOAT, TensorShape({})); in TEST() local
[all …]
/external/tensorflow/tensorflow/compiler/xla/python/
Dxla_data.i429 const int64 first_value = numpy::PyIntOrPyLongToLong(first_pyint);
430 if (first_value == -1 && PyErr_Occurred()) {
443 temps.push_back(std::make_pair(first_value, second_value));
/external/skqp/src/utils/
DSkJSON.cpp868 bool first_value = true; in Write() local
870 if (!first_value) stream->writeText(","); in Write()
872 first_value = false; in Write()
/external/skia/src/utils/
DSkJSON.cpp868 bool first_value = true; in Write() local
870 if (!first_value) stream->writeText(","); in Write()
872 first_value = false; in Write()
/external/deqp/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderLimits.cpp1887 const glw::GLint first_value = point * n_components_per_point + 1; in verifyResult() local
1889 const glw::GLint expected_value = ((first_value + last_value) * n_components_per_point) / 2; in verifyResult()
2205 const glw::GLint first_value = 1; in verifyResult() local
2207 const glw::GLint expected_value = ((first_value + last_value) * n_components_per_point) / 2; in verifyResult()
2513 const glw::GLint first_value = m_textures[0].data; in verifyResult() local
2515 const glw::GLint expected_value = ((first_value + last_value) * (point + 1)) / 2; in verifyResult()
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
Dinput_pipeline.py388 first_key, first_value = reader.read_up_to(filename_queue, 1)
409 [constant_op.constant([""]), first_value,
/external/eigen/unsupported/Eigen/CXX11/src/util/
DCXX11Meta.h43 ….> { constexpr static std::size_t count = sizeof...(nn) + 1; constexpr static T first_value = n; };