Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for lstm (0.05 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      }
      return b.create<mlir::quantfork::StatisticsOp>(b.getUnknownLoc(), res,
                                                     layer_stats, axis_stats, axis);
    }
    
    // Returns true if this is a basic LSTM op.
    bool IsBasicLSTMOp(tflite::BuiltinOptionsUnion op_union) {
      if (const auto* op = op_union.AsLSTMOptions()) {
        return op->kernel_type == tflite::LSTMKernelType_BASIC;
      } else {
        return false;
      }
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/internal/obj/arm/asm5.go

    	{REG_MB_NSHST, 6},
    	{REG_MB_OSH, 3},
    	{REG_MB_OSHST, 2},
    }
    
    var oprange [ALAST & obj.AMask][]Optab
    
    var xcmp [C_GOK + 1][C_GOK + 1]bool
    
    var (
    	symdiv  *obj.LSym
    	symdivu *obj.LSym
    	symmod  *obj.LSym
    	symmodu *obj.LSym
    )
    
    // Note about encoding: Prog.scond holds the condition encoding,
    // but XOR'ed with C_SCOND_XOR, so that C_SCOND_NONE == 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  6. cmd/bucket-replication-utils_gen.go

    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "st":
    			z.StartTime, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "StartTime")
    				return
    			}
    		case "lst":
    			z.LastUpdate, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "LastUpdate")
    				return
    			}
    		case "id":
    			z.ResyncID, err = dc.ReadString()
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "CALLtail", argLength: -1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true, tailCall: true},                                 // tail call static function aux.(*obj.LSym).  last arg=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    	default:
    		panic("InvertBranch: not a branch")
    	}
    }
    
    // containsCall reports whether the symbol contains a CALL (or equivalent)
    // instruction. Must be called after progedit.
    func containsCall(sym *obj.LSym) bool {
    	// CALLs are CALL or JAL(R) with link register LR.
    	for p := sym.Func().Text; p != nil; p = p.Link {
    		switch p.As {
    		case obj.ACALL, obj.ADUFFZERO, obj.ADUFFCOPY:
    			return true
    		case AJAL, AJALR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "CALLtail", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true, tailCall: true},                                  // tail call static function aux.(*obj.LSym).  arg0=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/mips/asm0.go

    // Each function gets a fresh ctxt0.
    // This allows for multiple functions to be safely concurrently assembled.
    type ctxt0 struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    	cursym     *obj.LSym
    	autosize   int32
    	instoffset int64
    	pc         int64
    }
    
    // Instruction layout.
    
    const (
    	mips64FuncAlign = 8
    )
    
    const (
    	r0iszero = 1
    )
    
    type Optab struct {
    	as     obj.As
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
Back to top