Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for StridedArrayViewBase (0.19 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc

    namespace odml {
    
    namespace {
    
    // Facilitate access to 1-d backing data for a tensor so that values in a 1-d
    // slice of the tensor can be accessed as if part of an ArrayView.
    class StridedArrayViewBase {
     protected:
      StridedArrayViewBase(ArrayRef<int64_t> shape, ArrayRef<int64_t> index,
                           int64_t axis) {
        assert(shape.size() == index.size());
        assert(axis < shape.size());
        assert(axis >= 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top