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

  /external/tensorflow/tensorflow/core/framework/
tensor_slice.h 34 class TensorSlice {
45 TensorSlice() {}
46 explicit TensorSlice(int dim);
47 explicit TensorSlice(const TensorSliceProto& proto);
48 explicit TensorSlice(std::initializer_list<std::pair<int64, int64>> extents);
50 static Status Parse(const string& str, TensorSlice* output);
51 static TensorSlice ParseOrDie(const string& str) {
52 TensorSlice ret;
55 LOG(FATAL) << "Could not parse TensorSlice";
111 // Conversion of a TensorSlice to other format
    [all...]
tensor_slice.cc 26 TensorSlice::TensorSlice(int dim) { SetFullSlice(dim); }
28 TensorSlice::TensorSlice(const TensorSliceProto& proto) {
37 TensorSlice::TensorSlice(
47 Status TensorSlice::Parse(const string& str, TensorSlice* slice) {
80 void TensorSlice::Clear() {
85 bool TensorSlice::IsFull() const
    [all...]

Completed in 446 milliseconds