Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for LSTMKernelType (0.26 sec)

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

    }
    
    static tflite::LSTMKernelType ConvertTFL_LSTMKernelTypeAttrForOptionWriter(
        mlir::TFL::LSTMKernelType kernel_type,
        flatbuffers::FlatBufferBuilder* builder) {
      switch (kernel_type) {
        case mlir::TFL::LSTMKernelType::FULL:
          return tflite::LSTMKernelType_FULL;
        case mlir::TFL::LSTMKernelType::BASIC:
          return tflite::LSTMKernelType_BASIC;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td

        "mirror_pad_attr">;
    
    // LSTM Kernel Type attributes
    def TFL_LSTM_KT_FULL  : I32EnumAttrCase<"FULL", 0>;
    def TFL_LSTM_KT_BASIC  : I32EnumAttrCase<"BASIC", 1>;
    def TFL_LSTMKernelType : I32EnumAttr<"LSTMKernelType", "lstm_kernel_type",
       [
         TFL_LSTM_KT_FULL,  TFL_LSTM_KT_BASIC
       ]>{
      let genSpecializedAttr = 0;
      let cppNamespace = "::mlir::TFL";
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 20 00:05:24 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

    table L2NormOptions {
      fused_activation_function:ActivationFunctionType;
    }
    
    table LocalResponseNormalizationOptions {
      radius:int;
      bias:float;
      alpha:float;
      beta:float;
    }
    
    enum LSTMKernelType : byte {
      // Full LSTM kernel which supports peephole and projection.
      FULL = 0,
      // Basic LSTM kernels. Equivalent to TensorFlow BasicLSTMCell.
      BASIC = 1,
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      fused_activation_function:ActivationFunctionType;
    }
    
    table LocalResponseNormalizationOptions {
      radius:int;
      bias:float;
      alpha:float;
      beta:float;
    }
    
    enum LSTMKernelType : byte {
      // Full LSTM kernel which supports peephole and projection.
      FULL = 0,
      // Basic LSTM kernels. Equivalent to TensorFlow BasicLSTMCell.
      BASIC = 1,
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema.fbs

      fused_activation_function:ActivationFunctionType;
    }
    
    table LocalResponseNormalizationOptions {
      radius:int;
      bias:float;
      alpha:float;
      beta:float;
    }
    
    // LINT.IfChange
    enum LSTMKernelType : byte {
      // Full LSTM kernel which supports peephole and projection.
      FULL = 0,
      // Basic LSTM kernels. Equivalent to TensorFlow BasicLSTMCell.
      BASIC = 1,
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

          builder_.getF32FloatAttr(10.0), builder_.getF32FloatAttr(0.0),
          mlir::TFL::LSTMKernelTypeAttr::get(builder_.getContext(),
                                             mlir::TFL::LSTMKernelType::FULL),
          /*asymmetric_quantize_inputs=*/mlir::BoolAttr(),
          /*input_to_input_intermediate=*/mlir::TypeAttr(),
          /*input_to_forget_intermediate=*/mlir::TypeAttr(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        // Since this op is the BASIC kernel only, constrain it.
        ConfinedAttr<
          DefaultValuedOptionalAttr<TFL_LSTMKernelTypeAttr, "mlir::TFL::LSTMKernelType::BASIC">,
          [TFL_LSTMKernelTypeEqualsTo<"mlir::TFL::LSTMKernelType::BASIC">]>:$kernel_type
      );
    
      let hasOptions = 1;
    
      let results = (outs TFL_2DTensorOf<[F32, QUI8]>:$activ_output,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      return EnumNamesFullyConnectedOptionsWeightsFormat()[index];
    }
    
    enum LSTMKernelType : int8_t {
      LSTMKernelType_FULL = 0,
      LSTMKernelType_BASIC = 1,
      LSTMKernelType_MIN = LSTMKernelType_FULL,
      LSTMKernelType_MAX = LSTMKernelType_BASIC
    };
    
    inline const LSTMKernelType (&EnumValuesLSTMKernelType())[2] {
      static const LSTMKernelType values[] = {
        LSTMKernelType_FULL,
        LSTMKernelType_BASIC
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // expected-error @+1 {{'tfl.lstm' op attribute 'kernel_type' failed to satisfy constraint: lstm_kernel_type whose value is mlir::TFL::LSTMKernelType::FULL}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top