HomeSort by relevance Sort by last modified time
    Searched defs:indices_ (Results 1 - 6 of 6) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
one_hot_op.h 37 : indices_(indices), on_value_(on_value), off_value_(off_value) {}
41 return (indices_(pre_depth_suff[0], pre_depth_suff[2]) == pre_depth_suff[1])
47 const typename TTypes<TI>::ConstMatrix indices_; member in class:tensorflow::generator::OneGenerator
  /external/webrtc/webrtc/modules/video_render/ios/
open_gles20.h 59 static const char indices_[]; member in class:webrtc::OpenGles20
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_reachability.h 139 return FindOrDie(indices_, instruction);
147 tensorflow::gtl::FlatMap<const HloInstruction*, int> indices_; member in class:xla::HloReachabilityMap
  /external/tensorflow/tensorflow/compiler/xla/
sparse_index_array.h 98 tensorflow::gtl::MutableArraySlice<int64> mutable_data() { return &indices_; }
99 tensorflow::gtl::ArraySlice<int64> data() const { return indices_; }
120 std::vector<int64> indices_; member in class:xla::SparseIndexArray
shape_util.h 59 ShapeIndex(std::initializer_list<int64> init) : indices_(init) {}
61 bool empty() const { return indices_.empty(); }
62 size_t size() const { return indices_.size(); }
63 void push_back(int64 value) { indices_.push_back(value); }
64 void pop_back() { indices_.pop_back(); }
67 void push_front(int64 value) { indices_.insert(indices_.begin(), value); }
69 std::vector<int64>::const_iterator begin() const { return indices_.begin(); }
70 std::vector<int64>::const_iterator end() const { return indices_.end(); }
71 std::vector<int64>::iterator begin() { return indices_.begin();
93 std::vector<int64> indices_; member in class:xla::ShapeIndex
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/
embedding_lookup_sparse_test.cc 40 indices_ = AddInput(TensorType_INT32);
57 PopulateTensor(indices_, indices_data);
81 int indices_; member in class:tflite::__anon39251::EmbeddingLookupSparseOpModel

Completed in 354 milliseconds