Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getVendor (0.11 sec)

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

        for (auto& use : tensorlist.getUses()) {
          if (auto push = llvm::dyn_cast<TensorListPushBackOp>(use.getOwner())) {
            auto element_type =
                mlir::dyn_cast<RankedTensorType>(push.getTensor().getType());
            if (!verify_and_update_potential_element_type(element_type))
              return false;
            add_to_worklist(push.getOutputHandle());
            continue;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      LogicalResult matchAndRewrite(OpTy op,
                                    PatternRewriter &rewriter) const override {
        auto tensor_ty = mlir::dyn_cast<RankedTensorType>(op.getTensor().getType());
        auto indices_ty =
            mlir::dyn_cast<RankedTensorType>(op.getIndices().getType());
        auto updates_ty =
            mlir::dyn_cast<RankedTensorType>(op.getUpdates().getType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top