Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetInputActivationState (0.3 sec)

  1. tensorflow/compiler/mlir/lite/utils/lstm_utils.h

      void SetBiasToCellGate();
      void SetBiasToInputGate();
      void SetBiasToForgetGate();
      void SetBiasToOutputGate();
    
      void SetProjection();
      void SetProjectionBias();
    
      void SetInputActivationState();
      void SetInputCellState();
    
      virtual void SetCellLayerNormCoefficients();
      virtual void SetInputLayerNormCoefficients();
      virtual void SetForgetLayerNormCoefficients();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

                       ? none_
                       : 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());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
Back to top