Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for operator_codes (0.14 sec)

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

        for (int j = 0; j < subgraph->operators()->Length(); ++j) {
          const tflite::Operator* op = subgraph->operators()->Get(j);
          const tflite::OperatorCode* op_code =
              model->operator_codes()->Get(op->opcode_index());
          auto status =
              tflite::CheckGpuDelegateCompatibility(op_code, op, subgraph, model);
          if (!status.ok()) {
            gpu_compatibile = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        A generic op for any TFLite custom operation.
    
        input: A list of inputs in the original op.
        custom_code: A string used to identify which exactly this op is, which
                     corresponds to operator_codes.custom_code in the flatbuffer.
        custom_option: a holder to save the op attributes in bytes fashion.
        output: A list of outputs in the original op.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top