HomeSort by relevance Sort by last modified time
    Searched refs:first_value (Results 1 - 7 of 7) sorted by null

  /external/tensorflow/tensorflow/core/framework/
shape_inference.cc 912 const int64 first_value = Value(first); local
915 if (first_value == 0) {
919 } else if (first_value == kUnknownDim || second_value == kUnknownDim) {
926 const int64 sum = static_cast<uint64>(first_value) + second_value;
929 first_value, " and ", second_value);
939 const int64 first_value = Value(first); local
944 } else if (first_value == kUnknownDim || second_value == kUnknownDim) {
947 // Invariant: Both values are known, first_value is non-negative, and
949 if (first_value < second_value) {
952 " from ", first_value);
962 const int64 first_value = Value(first); local
990 const int64 first_value = Value(first); local
1010 const int64 first_value = Value(first); local
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
main.c 313 static int first_value = 0; local
314 if(first_value == 0){
315 first_value = 1;
324 static int first_value = 0;
325 if(first_value == 0){
326 first_value = 1;
  /external/tensorflow/tensorflow/core/common_runtime/
direct_session_test.cc 342 Tensor first_value(DT_FLOAT, TensorShape({}));
343 first_value.scalar<float>()() = 1.0;
344 Node* first_const = test::graph::Constant(&g, first_value);
515 Tensor first_value(DT_FLOAT, TensorShape({}));
516 first_value.scalar<float>()() = 1.0;
517 Node* first_const = test::graph::Constant(&g, first_value);
571 Tensor first_value(DT_FLOAT, TensorShape({}));
572 first_value.scalar<float>()() = 1.0;
573 Node* first_const = test::graph::Constant(&g, first_value);
    [all...]
  /external/deqp/external/openglcts/modules/glesext/geometry_shader/
esextcGeometryShaderLimits.cpp 1888 const glw::GLint first_value = point * n_components_per_point + 1; local
2206 const glw::GLint first_value = 1; local
2514 const glw::GLint first_value = m_textures[0].data; local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/python/
local_computation_builder.i 504 const int64 first_value = numpy::PyIntOrPyLongToLong(first_pyint);
505 if (first_value == -1 && PyErr_Occurred()) {
518 temps.push_back(std::make_pair(first_value, second_value));
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
input_pipeline.py 388 first_key, first_value = reader.read_up_to(filename_queue, 1)
409 [constant_op.constant([""]), first_value,
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/util/
CXX11Meta.h 43 struct numeric_list<T, n, nn...> { constexpr static std::size_t count = sizeof...(nn) + 1; constexpr static T first_value = n; }; member in struct:Eigen::internal::numeric_list

Completed in 1171 milliseconds