Home
last modified time | relevance | path

Searched refs:slice_strides_ (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_instructions.cc1206 slice_strides_(strides.begin(), strides.end()) { in HloSliceInstruction()
1211 if (slice_strides_.empty()) { in HloSliceInstruction()
1212 slice_strides_ = std::vector<int64>(start_indices.size(), 1LL); in HloSliceInstruction()
1222 slice_dimension->set_stride(slice_strides_[i]); in ToProto()
1232 absl::c_all_of(slice_strides_, [](int64 stride) { return stride == 1; }); in ExtraAttributesToStringImpl()
1234 string stride_str = omit_stride ? "" : StrCat(":", slice_strides_[i]); in ExtraAttributesToStringImpl()
1248 slice_strides_ == other_slice.slice_strides_; in IdenticalSlowPath()
1256 shape, new_operands[0], slice_starts_, slice_limits_, slice_strides_); in CloneWithNewOperandsImpl()
Dhlo_instructions.h808 return slice_strides_[dimension]; in slice_strides()
810 const std::vector<int64>& slice_strides() const { return slice_strides_; } in slice_strides()
811 std::vector<int64>* mutable_slice_strides() { return &slice_strides_; } in mutable_slice_strides()
828 std::vector<int64> slice_strides_; variable