Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for llvm_unreachable (0.21 sec)

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

      if (auto tl_reserve = dyn_cast<TensorListReserveOp>(op))
        return tl_reserve.getElementShape();
      if (auto tl_from_tensor = dyn_cast<TensorListFromTensorOp>(op))
        return tl_from_tensor.getElementShape();
      llvm_unreachable("unsupported TensorList op");
    }
    
    // Utility function to create a ranked tensor type after dropping the first
    // dimension from the input type.
    RankedTensorType DropFirstDimension(Type type) {
    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/tensorflow/ir/tf_ops_a_m.cc

        return ConstOp::build(builder, result, DenseElementsAttr::get(type, value));
      }
      // TODO(jpienaar): support other TensorFlow specific types.
      llvm_unreachable("unsupported attribute type for building tf.Const");
    }
    
    void ConstOp::build(OpBuilder& builder, OperationState& result, Type type,
                        Attribute value) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top