Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for slice_v1 (0.12 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        results.reserve(op.getNumResults());
    
        for (int i = 0, end = op.getNumResults(); i < end; ++i) {
          begin_indices[axis] = i;
          end_indices[axis] = i + 1;
    
          auto slice_op = rewriter.create<mhlo::SliceOp>(
              op.getLoc(), op.getValue(),
              GetI64ElementsAttr(begin_indices, &rewriter),
              GetI64ElementsAttr(end_indices, &rewriter),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                tflite::BuiltinOptions2_StablehloConcatenateOptions,
                concat_option.Union());
          }
          if (auto vhlo_op = llvm::dyn_cast<mlir::vhlo::SliceOpV1>(inst)) {
            std::string op_name = inst->getName().getStringRef().str();
            uint32_t opcode_index =
                GetOpcodeIndex(op_name, tflite::BuiltinOperator_STABLEHLO_SLICE);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

       `dimI` are the dimensions of the larger tensor and `slice-spec`
       specifies what part is covered by the tensor to save.
    
    `slice-spec` itself is a `:`-separated list: `slice0:slice1:...:sliceN-1`
    where each `sliceI` is either:
    
    *  The string `-` meaning that the slice covers all indices of this dimension
    *  `start,length` where `start` and `length` are integers.  In that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top