Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TFLOp (0.05 sec)

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

        StringRef op_name = def->getName().drop_front(4);
    
        // Try to cast to each op case and call the corresponding op builder
        os << "  if (auto tflOp = llvm::dyn_cast<mlir::TFL::" << op_name
           << ">(op))\n"
           << "    return " << GetOperatorBuilderName(def->getName())
           << "(tflOp, opcode_index, operands, results, "
           << (op_name.take_back(6) == "LSTMOp" ? "intermediates, " : "")
           << "fbb);\n";
      }
    
    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_export.cc

    // Extracts TfLitePoolParams from a TFL custom op.
    // Template parameter, TFLOp, should be a TFL custom op containing attributes
    // generated from TfLitePoolParams.
    // Returns std::nullopt if conversion fails.
    template <typename TFLOp>
    static std::optional<TfLitePoolParams> GetTflitePoolParams(Operation* inst,
                                                               TFLOp op) {
      TfLitePoolParams pool_params;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (2)
Back to top