Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for begin_values (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto create_slice_op = [&](int32_t axis_i, int32_t begin_i, int32_t size_i,
                                   Value input) {
          SmallVector<int64_t, 4> begin_values(input_rank, 0);
          begin_values[axis_i] = begin_i;
          auto begin_attr = DenseIntElementsAttr::get(axis_type, begin_values);
          auto begin =
              rewriter.create<ConstOp>(op->getLoc(), axis_type, begin_attr);
    
          SmallVector<int64_t, 4> output_shape;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top