Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for inp (0.03 sec)

  1. src/crypto/aes/asm_ppc64x.s

    	MOVD	nr+0(FP), ROUNDS
    	MOVD	key+8(FP), INP
    	MOVD	enc+16(FP), OUTENC
    	MOVD	dec+24(FP), OUTDEC
    
    #ifdef NEEDS_ESPERM
    	MOVD	$·rcon(SB), PTR // PTR points to rcon addr
    	LVX	(PTR), ESPERM
    	ADD	$0x10, PTR
    #else
    	MOVD	$·rcon+0x10(SB), PTR // PTR points to rcon addr (skipping permute vector)
    #endif
    
    	// Get key from memory and write aligned into VR
    	P8_LXVB16X(INP, R0, IN0)
    	ADD	$0x10, INP, INP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	// the special ".closureptr" var for rangefunc bodies.
    	params := []abi.ABIParamAssignment{}
    	for _, inp := range pri.InParams() {
    		if !isNamedRegParam(inp) {
    			// will be sorted out elsewhere
    			continue
    		}
    		addVarSlot(inp.Name, inp.Type)
    		params = append(params, inp)
    	}
    	if needCloCtx {
    		addVarSlot(f.CloSlot, f.CloSlot.Type())
    		cloAssign := abi.ABIParamAssignment{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. cmd/speedtest.go

    						if r.Error != nil {
    							return r.Error.Error()
    						}
    						return ""
    					}(),
    				}
    				results = append(results, result)
    			}
    			for _, inp := range ignoredPaths {
    				results = append(results, madmin.DrivePerf{
    					Path:  inp,
    					Error: errFaultyDisk.Error(),
    				})
    			}
    			return results
    		}(),
    		Error: func() string {
    			if err != nil {
    				return err.Error()
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/crypto/aes/gcm_ppc64x.go

    	"runtime"
    )
    
    // This file implements GCM using an optimized GHASH function.
    
    //go:noescape
    func gcmInit(productTable *[256]byte, h []byte)
    
    //go:noescape
    func gcmHash(output []byte, productTable *[256]byte, inp []byte, len int)
    
    //go:noescape
    func gcmMul(output []byte, productTable *[256]byte)
    
    const (
    	gcmCounterSize       = 16
    	gcmBlockSize         = 16
    	gcmTagSize           = 16
    	gcmStandardNonceSize = 12
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // dimensions with max as the reduction function.
    //
    // Sample result for VALID padding mode:
    //
    //   %init = arith.constant dense<...> : tensor<i32>
    //   %max_pool = "mhlo.reduce"(%inp, %init) ["mhlo.maximum"]
    //               {window_dimensions = ..., window_strides = ... }
    //
    template <typename OpTy, int num_dims>
    class ConvertMaxPoolOp : public OpRewritePattern<OpTy> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

        // CHECK-NEXT: %[[LEAKY:.*]] = mhlo.multiply %[[INP:.*]], %[[ALPHA]] : tensor<1x4x4x3xf32>
        // CHECK-NEXT: %[[CMP:.*]] = mhlo.compare GT, %[[INP]], %[[ZERO]], NOTYPE : (tensor<1x4x4x3xf32>, tensor<1x4x4x3xf32>) -> tensor<1x4x4x3xi1>
        // CHECK-NEXT: %[[RES:.*]] = mhlo.select %[[CMP]], %[[INP]], %[[LEAKY]] : tensor<1x4x4x3xi1>, tensor<1x4x4x3xf32>
        // CHECK-NEXT: return %[[RES]] : tensor<1x4x4x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    `min_adj = scale * round(min / scale)` and `max_adj = max + min_adj - min`.
    
    
    Examples
    
    ```python
    
    inp = tf.constant ([10.03, -10.23, 3])
    out = tf.quantization.fake_quant_with_min_max_args(inp, min=-5, max=5,
                                                       num_bits=16)
    print(out)
    
    #  Output:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top