Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CustomOptions (0.12 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_tensorlist.td

    def Size3InputRange : NativeCodeCall<
      "SmallVector<Value, 3>{$0, $1, $2}">;
    
    def EmptyCustomOptions : NativeCodeCall<
      "TFL::ConstBytesAttr::get($_builder.getContext(), \"\")">;
    
    def CustomOptions : NativeCodeCall<
      "CustomOptions($_builder.getContext(), $0.getDefiningOp()).value()">;
    
    class CreateStringAttr<string values> : NativeCodeCall<
      "$_builder.getStringAttr("# values #")">;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 18 07:12:51 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_tensorlist.cc

    // op is not a `tf.TensorList*` op, return empty, although this case
    // should never be trigged in practice since patterns are only applied
    // on `tf.TensorList*` ops.
    std::optional<ConstBytesAttr> CustomOptions(MLIRContext* context,
                                                mlir::Operation* op) {
      if (auto reserve =
              llvm::dyn_cast_or_null<mlir::TF::TensorListReserveOp>(op)) {
        tflite::TensorType tflite_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top