Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for input_activation_state18 (0.41 sec)

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

            },
            {
              "shape": [4],
              "buffer": 17,
              "name": "proj_bias17"
            },
            {
              "shape": [1, 4],
              "name": "input_activation_state18",
              "is_variable": true,
              "quantization": {
                "min": [-0.8],
                "max": [1.6]
              }
            },
            {
              "shape": [1, 2],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

                       : CreateF32SplatConst(&builder_, {n_output_}, 0,
                                             fused_func_op_.getLoc());
    }
    
    void ConvertLSTMCellSimpleToFusedLSTM::SetInputActivationState() {
      input_activation_state_ = CreateF32SplatConst(&builder_, {1, n_output_}, 0,
                                                    fused_func_op_.getLoc());
    }
    
    void ConvertLSTMCellSimpleToFusedLSTM::SetInputCellState() {
      input_cell_state_ =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/lstm_utils.h

      // bias -> cifg
      Value bias2input_;
      Value bias2forget_;
      Value bias2cell_;
      Value bias2output_;
    
      // projection
      Value proj_weight_;
      Value proj_bias_;
    
      // state
      Value input_activation_state_;
      Value input_cell_state_;
    
      // layer norm coefficients
      Value input_layer_norm_coefficients_;
      Value forget_layer_norm_coefficients_;
      Value cell_layer_norm_coefficients_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_TensorOfOrNone<[F32, QI8]>:$projection_weights,
        // Optional input
        TFL_TensorOfOrNone<[F32, QI32]>:$projection_bias,
    
        // Stateful activation and cell states.
        TFL_StatefulTensor:$input_activation_state,
        TFL_StatefulTensor:$input_cell_state,
    
        // Layer norm coefficients
        TFL_TensorOfOrNone<[F32, QI16]>:$input_layer_norm_coefficients,
    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