Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreateFlatBufferOperator (0.36 sec)

  1. tensorflow/compiler/mlir/lite/converter_gen.cc

    // a general mlir::Operation.
    //
    // The signature of the function is:
    //
    //   std::optional<Flatbuffers::Offset<tflite::Operator>>
    //   mlir::CreateFlatBufferOperator(
    //       mlir::Operation* op,
    //       uint32_t opcode_index,
    //       const std::vector<int32_t>& operands,
    //       const std::vector<int32_t>& results,
    //       const std::vector<int32_t>& intermediates,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

    // Returns the FlatBuffer offset for the operator on success; emits error and
    // returns std::nullopt on failure.
    std::optional<flatbuffers::Offset<tflite::Operator>> CreateFlatBufferOperator(
        Operation *mlir_op, uint32_t opcode_index,
        const std::vector<int32_t> &operands, const std::vector<int32_t> &results,
        const std::vector<int32_t> &intermediates,
        flatbuffers::FlatBufferBuilder *fbb);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        if (*builtin_code == tflite::BuiltinOperator_TRANSPOSE_CONV) {
          if (operands.size() == 4 && operands.at(3) == -1) {
            operands.pop_back();
          }
        }
    
        auto offset = CreateFlatBufferOperator(inst, opcode_index, operands,
                                               results, intermediates, &builder_);
        if (!offset) {
          inst->emitOpError("is not a supported TFLite op");
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top