Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for lstm (0.06 sec)

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

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_translate --tflite-flatbuffer-to-mlir - -o - | FileCheck %s
    // Ensure lstm roundtrip exactly
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/lstm.mlir

    // CHECK: {
    // CHECK-NEXT:   version: 3,
    // CHECK-NEXT:   operator_codes: [ {
    // CHECK-NEXT:     deprecated_builtin_code: 16,
    // CHECK-NEXT:     version: 1,
    // CHECK-NEXT:     builtin_code: LSTM
    // CHECK-NEXT:   } ],
    // CHECK-NEXT:   subgraphs: [ {
    // CHECK-NEXT:     tensors: [ {
    // CHECK-NEXT:       shape: [ 1, 4 ],
    // CHECK-NEXT:       buffer: 1,
    // CHECK-NEXT:       name: "arg0",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:55:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/lstm.json

    Christian Sigg <******@****.***> 1714543668 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

          lstm_func.emitWarning(
              "we cannot fuse this lstm func because all the inputs have not "
              "ranked tensor type.");
          return failure();
        }
        switch (i) {
          case 1:  // output_init_state
          case 2:  // hidden_init_state
            if (!input_type.hasStaticShape()) {
              lstm_func.emitWarning(
                  "we cannot fuse this lstm func because the batch size is not "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      // The func will ultimately return the output of the fused
      // LSTM op.
      UpdateFuncSignature();
    
      // Transform the weights, projection, bias and layer norm coefficients
      // to generate operands for the TFL fused LSTM op.
      GenerateFusedOpOperands();
    
      // Create the fused LSTM op.
      SmallVector<int64_t, 2> output_shape = {1, n_output_};
      auto result_type = mlir::RankedTensorType::get(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/lstm_utils.h

        "LayerNormalizedLstmCellSimple";
    constexpr char kCoupleInputForgetGates[] = "CoupleInputForgetGates";
    
    // A utility class that enables the conversion of the LSTMCellSimple composite
    // op into a fused TFL LSTM op. The fused op is contained within a FuncOp
    // that also contains other supporting ops needed to construct the operands for
    // the fused op. The caller provides the containing FuncOp as input with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training.mlir

    // CHECK-DAG: %[[input_23:.*]] = "tfl.dequantize"({{.*}}) : (tensor<2x!quant.uniform<i16<-32767:32767>:f32, 2.736719606284107E-5>>) -> tensor<2xf32>
    
    // CHECK: %[[lstm:.*]] = "tfl.lstm"(%[[input_0]], %[[none]], %[[input_2]], %[[input_3]], %[[input_4]], %[[none]], %[[input_6]], %[[input_7]], %[[input_8]],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/lstm_asym_attr.mlir

    // CHECK: {
    // CHECK-NEXT:   version: 3,
    // CHECK-NEXT:   operator_codes: [ {
    // CHECK-NEXT:     deprecated_builtin_code: 16,
    // CHECK-NEXT:     version: 1,
    // CHECK-NEXT:     builtin_code: LSTM
    // CHECK-NEXT:   } ],
    // CHECK-NEXT:   subgraphs: [ {
    // CHECK-NEXT:     tensors: [ {
    // CHECK-NEXT:       shape: [ 1, 4 ],
    // CHECK-NEXT:       buffer: 1,
    // CHECK-NEXT:       name: "arg0",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:55:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

      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,
    }
    
    // An implementation of TensorFlow LSTMCell and CoupledInputForgetGateLSTMCell
    table LSTMOptions {
      // Parameters for LSTM version 1 or above.
      fused_activation_function:ActivationFunctionType;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      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,
    }
    
    // An implementation of TensorFlow LSTMCell and CoupledInputForgetGateLSTMCell
    table LSTMOptions {
      // Parameters for LSTM version 1 or above.
      fused_activation_function:ActivationFunctionType;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top