Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Bidirectional sequence lstm operator";
    
      let description = [{
        Bidirectional lstm is essentially two lstms, one running forward & the
        other running backward. And the output is the concatenation of the two
        lstms.
      }];
    
      let arguments = (
        ins TFL_TensorOf<[F32, I8]>:$input,
    
        // Forward LSTM Weights
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // expected-error @+1 {{'tfl.lstm' op failed to verify that either projection weight must be specified or both projection weight and projection bias must not be specified}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // The conversion pipeline has to follow the following orders:
      // 1) Saved model related optimization like decompose resource ops
      // 2) Convert composite functions like lstm/rnns, along with proper function
      // inlining & dce.
      // 3) Lower static tensor list pass.
    
      // This decomposes resource ops like ResourceGather into read-variable op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // duplicated buffer is found.
      std::optional<BufferOffset<tflite::Buffer>> BuildBuffer(
          Value value, bool can_be_deduplicated, int& index);
    
      // Build TFLite tensor from the given type. This function is for tfl.lstm
      // intermediates, which should have UniformQuantizedType.
      std::optional<BufferOffset<tflite::Tensor>> BuildTensorFromType(
          mlir::Type type, const std::string& name);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. RELEASE.md

    ## Bug Fixes and Other Changes
    
    *   `tf.nn.rnn_cell.DropoutWrapper` is now more careful about dropping out LSTM
        states. Specifically, it no longer ever drops the `c` (memory) state of an
        `LSTMStateTuple`. The new behavior leads to proper dropout behavior for
        LSTMs and stacked LSTMs. This bug fix follows recommendations from published
        literature, but is a behavioral change. State dropout behavior may be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      target.addDynamicallyLegalOp<TF::YieldOp>(is_legal);
      target.addDynamicallyLegalOp<TF::TensorListSetItemOp>(is_set_item_legal);
      target.addLegalOp<TFL::CustomOp>();
      // Register fused LSTM/RNN ops as legal.
      target.addLegalOp<TFL::LSTMOp>();
      target.addLegalOp<TFL::UnidirectionalSequenceLSTMOp>();
      target.addLegalOp<TFL::UnidirectionalSequenceRNNOp>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    func symIsRO(sym interface{}) bool {
    	lsym := sym.(*obj.LSym)
    	return lsym.Type == objabi.SRODATA && len(lsym.R) == 0
    }
    
    // symIsROZero reports whether sym is a read-only global whose data contains all zeros.
    func symIsROZero(sym Sym) bool {
    	lsym := sym.(*obj.LSym)
    	if lsym.Type != objabi.SRODATA || len(lsym.R) != 0 {
    		return false
    	}
    	for _, b := range lsym.P {
    		if b != 0 {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/liveness/plive.go

    	}
    
    	nbitmap := 1
    	if fn.Type().NumResults() > 0 {
    		nbitmap = 2
    	}
    	lsym := base.Ctxt.Lookup(fn.LSym.Name + ".args_stackmap")
    	lsym.Set(obj.AttrLinkname, true) // allow args_stackmap referenced from assembly
    	off := objw.Uint32(lsym, 0, uint32(nbitmap))
    	off = objw.Uint32(lsym, off, uint32(bv.N))
    	off = objw.BitVec(lsym, off, bv)
    
    	if fn.Type().NumResults() > 0 {
    		for _, p := range abiInfo.OutParams() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    		defer s.popLine()
    	}
    
    	if s.canSSA(n) {
    		s.Fatalf("addr of canSSA expression: %+v", n)
    	}
    
    	t := types.NewPtr(n.Type())
    	linksymOffset := func(lsym *obj.LSym, offset int64) *ssa.Value {
    		v := s.entryNewValue1A(ssa.OpAddr, t, lsym, s.sb)
    		// TODO: Make OpAddr use AuxInt as well as Aux.
    		if offset != 0 {
    			v = s.entryNewValue1I(ssa.OpOffPtr, v.Type, offset, v)
    		}
    		return v
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. cmd/bucket-replication-utils.go

    // TargetReplicationResyncStatus status of resync of bucket for a specific target
    type TargetReplicationResyncStatus struct {
    	StartTime  time.Time `json:"startTime" msg:"st"`
    	LastUpdate time.Time `json:"lastUpdated" msg:"lst"`
    	// Resync ID assigned to this reset
    	ResyncID string `json:"resyncID" msg:"id"`
    	// ResyncBeforeDate - resync all objects created prior to this date
    	ResyncBeforeDate time.Time `json:"resyncBeforeDate" msg:"rdt"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top