Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BuiltinOptionsToAttributes (0.26 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

        flatbuffers::FlatBufferBuilder *fbb);
    
    // Populates the array of mlir::NamedAttributes corresponding to the given
    // tflite::FlatbufferOptionsUnion.
    // We use an out parameter per LLVM convention
    void BuiltinOptionsToAttributes(
        tflite::BuiltinOptionsUnion op_union, mlir::Builder builder,
        // NOLINTNEXTLINE
        llvm::SmallVectorImpl<mlir::NamedAttribute> &attributes);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

            op_code.custom_code, custom_options, builder, loc, &attrs);
        if (!status.ok()) {
          return emitError(loc, status.ToString()), status;
        }
      } else {
        mlir::BuiltinOptionsToAttributes(op.builtin_options, builder, attrs);
        mlir::BuiltinOptions2ToAttributes(op.builtin_options_2, builder, attrs);
      }
    
      if (builtin_code == tflite::BuiltinOperator_STABLEHLO_COMPOSITE) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
Back to top