Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for opcode_index (0.11 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/tests/end2end/fake_quant_per_channel.pbtxt

    # CHECK:       builtin_options_type: Conv2DOptions,
    # CHECK:       builtin_options: {
    # CHECK:         stride_w: 1,
    # CHECK:         stride_h: 1
    # CHECK:       }
    # CHECK:     }, {
    # CHECK:       opcode_index: 1,
    # CHECK:       inputs: [ 4, 1 ],
    # CHECK:       outputs: [ 5 ]
    # CHECK:     } ],
    # CHECK:     name: "main"
    # CHECK:   } ],
    # CHECK:   description: "MLIR Converted.",
    # CHECK:   buffers: [ {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/end2end/fake_quant_per_channel_4bit.pbtxt

    # CHECK:       builtin_options_type: Conv2DOptions,
    # CHECK:       builtin_options: {
    # CHECK:         stride_w: 1,
    # CHECK:         stride_h: 1
    # CHECK:       }
    # CHECK:     }, {
    # CHECK:       opcode_index: 1,
    # CHECK:       inputs: [ 4, 1 ],
    # CHECK:       outputs: [ 5 ]
    # CHECK:     } ],
    # CHECK:     name: "main"
    # CHECK:   } ],
    # CHECK:   description: "MLIR Converted.",
    # CHECK:   buffers: [ {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        const std::unique_ptr<tflite::FlatBufferModel>& model_ptr) {
      llvm::SmallVector<Value, 4> operands;
      llvm::SmallVector<mlir::Type, 2> outputTypes;
    
      const tflite::OperatorCodeT& op_code = *op_codes.at(op.opcode_index);
    
      const std::string op_name = GetMlirOpName(op, op_code);
    
      OperationState op_state(loc, op_name);
    
      for (auto input_num : op.inputs) {
        if (input_num == -1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    struct OperatorBuilder {
      typedef Operator Table;
      ::flatbuffers::FlatBufferBuilder &fbb_;
      ::flatbuffers::uoffset_t start_;
      void add_opcode_index(uint32_t opcode_index) {
        fbb_.AddElement<uint32_t>(Operator::VT_OPCODE_INDEX, opcode_index, 0);
      }
      void add_inputs(::flatbuffers::Offset<::flatbuffers::Vector<int32_t>> inputs) {
        fbb_.AddOffset(Operator::VT_INPUTS, inputs);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top