Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 1_8000 (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

              Tout=[o.type for o in computation.definition.signature.output_arg],
              num_batch_threads=1,
              max_batch_size=10,
              batch_timeout_micros=100000,  # 100ms
              allowed_batch_sizes=[3, 10],
              batching_queue="")
      ```
    
    If more than one session.run call is simultaneously trying to compute `b`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		v0.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (MOVWQSX (ANDLconst [c] x))
    	// cond: c & 0x8000 == 0
    	// result: (ANDLconst [c & 0x7fff] x)
    	for {
    		if v_0.Op != OpAMD64ANDLconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		x := v_0.Args[0]
    		if !(c&0x8000 == 0) {
    			break
    		}
    		v.reset(OpAMD64ANDLconst)
    		v.AuxInt = int32ToAuxInt(c & 0x7fff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top