Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for basic_lstm (0.19 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/basic_lstm.mlir

    // Ensure basic_lstm roundtrip exactly
    
    func.func @main(%arg0: tensor<1x384xf32>, %arg1: tensor<1x96xf32>, %arg2: tensor<384x480xf32>, %arg3: tensor<384xf32>, %arg4: tensor<1x96xf32>) -> tensor<1x96xf32> {
    // CHECK-LABEL: @main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    std::string GetMlirOpName(const tflite::OperatorT& op,
                              const tflite::OperatorCodeT& op_code) {
      if (IsBasicLSTMOp(op.builtin_options)) {
        return std::string("tfl.basic_lstm");
      }
      return mlir::GetMlirOpNameFromOpCode(op_code);
    }
    
    StatusOr<Operation*> BuildExternalConstOp(const tflite::TensorT& tensor,
                                              int32_t buffer_index,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/ops.mlir

    func.func @testBasicLstm(%arg0: tensor<1x384xf32>, %arg1: tensor<1x96xf32>, %arg2: tensor<384x480xf32>, %arg3: tensor<384xf32>, %arg4: tensor<1x96xf32>) -> (tensor<1x96xf32>, tensor<1x96xf32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      TFL_TCresVTEtIsSameAsOp<0, 0>>;
    
    // This is the basic kernel type LSTM op.
    // TODO(b/142417845): Refactor this part to return its tflite node name as
    // "lstm".
    def TFL_BasicLSTMOp : TFL_Op<"basic_lstm", [Pure,
        TFL_OperandHasRank<0, 2>,
        TFL_OperandHasRank<1, 2>,
        TFL_OperandHasRank<2, 2>,
        TFL_OperandHasRank<3, 1>,
        TFL_OperandHasRank<4, 2>,
        QuantizableResult]> {
    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