Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for 16xi32 (0.1 sec)

  1. src/math/big/nat.go

    		// bits after the first one bit.
    		top := uint(x[i])
    		top |= top >> 1
    		top |= top >> 2
    		top |= top >> 4
    		top |= top >> 8
    		top |= top >> 16
    		top |= top >> 16 >> 16 // ">> 32" doesn't compile on 32-bit architectures
    		return i*_W + bits.Len(top)
    	}
    	return 0
    }
    
    // trailingZeroBits returns the number of consecutive least significant zero
    // bits of x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // The first Operand is assumed to be a TensorType around a variant with a
      // single subtype (e.g. tensor<!tf_type.variant<tensor<2xi32>>>). We will
      // copy this type to the first result, and copy the singular variant subtype
      // to the second result (tensor<2xi32>).
      DCOMMENT_OP(op, "Inferring shape for TensorListPopBackOp.");
    
      auto src_list_handle_t =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    from tensorflow.compiler.mlir.tensorflow.gen_mlir_passthrough_op import mlir_passthrough_op
    
    mlir_module = '''python
    func @main(%arg0 : tensor<10xf32>, %arg1 : tensor<10xf32>) -> tensor<10x10xf32> {
       %add = "magic.op"(%arg0, %arg1) : (tensor<10xf32>, tensor<10xf32>) -> tensor<10x10xf32>
       return %ret : tensor<10x10xf32>
    }
    '''
    
    @tf.function
    def foo(x, y):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritePPC64.go

    		if z.Op != OpPPC64MOVHZreg {
    			break
    		}
    		x := z.Args[0]
    		if !(z.Uses == 1 && c < 16) {
    			break
    		}
    		v.reset(OpPPC64CLRLSLWI)
    		v.AuxInt = int32ToAuxInt(newPPC64ShiftAuxInt(c, 16, 31, 32))
    		v.AddArg(x)
    		return true
    	}
    	// match: (SLWconst [c] z:(ANDconst [d] x))
    	// cond: z.Uses == 1 && isPPC64ValidShiftMask(d) && c<=(32-getPPC64ShiftMaskLength(d))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top