Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for opcode_index (2.73 sec)

  1. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/quantization.mlir

    // CHECK-NEXT:    }, {
    // CHECK-NEXT:      opcode_index: 1,
    // CHECK-NEXT:      inputs: [ 2, 3, 4 ],
    // CHECK-NEXT:      outputs: [ 5 ],
    // CHECK-NEXT:      builtin_options_type: Conv2DOptions,
    // CHECK-NEXT:      builtin_options: {
    // CHECK-NEXT:        stride_w: 2,
    // CHECK-NEXT:        stride_h: 2
    // CHECK-NEXT:      }
    // CHECK-NEXT:    }, {
    // CHECK-NEXT:      opcode_index: 2,
    // CHECK-NEXT:      inputs: [ 5, 1 ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 11.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

          const auto op = subgraph->operators()->Get(op_idx);
          for (size_t i = 0; i < op->outputs()->size(); ++i) {
            if (op->outputs()->Get(i) == tensor_idx) {
              const uint32_t op_code_idx = op->opcode_index();
              *op_code = GetBuiltinCode(model->operator_codes()->Get(op_code_idx));
              return true;
            }
          }
        }
        return false;
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/converter_gen.cc

        // Signature
        os << "static flatbuffers::Offset<tflite::Operator> "
           << GetOperatorBuilderName(def->getName()) << "(mlir::TFL::" << op_name
           << " tflOp, uint32_t opcode_index, "
           << "const std::vector<int32_t>& operands,"
           << "const std::vector<int32_t>& results,"
           << (has_intermediates ? "const std::vector<int32_t>& intermediate_index,"
                                 : "")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
Back to top