Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for argptr (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        return {};
    
      // First tensor dimension is dynamic.
      auto arg_ty = tensor.getType().dyn_cast<ShapedType>();
      if (!arg_ty || !arg_ty.hasRank() || arg_ty.getNumDynamicDims() != 1 ||
          !arg_ty.isDynamicDim(0))
        return {};
    
      // Argument tensor rank is equal to the number of packed dimensions.
      if (arg_ty.getRank() != getValues().size()) return {};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Add64  (Const64 [c])  (Const64 [d]))  => (Const64 [c+d])
    (Add32F (Const32F [c]) (Const32F [d])) && c+d == c+d => (Const32F [c+d])
    (Add64F (Const64F [c]) (Const64F [d])) && c+d == c+d => (Const64F [c+d])
    (AddPtr <t> x (Const64 [c])) => (OffPtr <t> x [c])
    (AddPtr <t> x (Const32 [c])) => (OffPtr <t> x [int64(c)])
    
    (Sub8   (Const8 [c]) (Const8 [d]))     => (Const8 [c-d])
    (Sub16  (Const16 [c]) (Const16 [d]))   => (Const16 [c-d])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	allglock mutex
    	allgs    []*g
    
    	// allglen and allgptr are atomic variables that contain len(allgs) and
    	// &allgs[0] respectively. Proper ordering depends on totally-ordered
    	// loads and stores. Writes are protected by allglock.
    	//
    	// allgptr is updated before allglen. Readers should read allglen
    	// before allgptr to ensure that allglen is always <= len(allgptr). New
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    		arns = append(arns, rCfg.RoleArn)
    	} else {
    		for _, rule := range rCfg.Rules {
    			arns = append(arns, rule.Destination.String())
    		}
    	}
    	var sameTarget bool
    	for _, arnStr := range arns {
    		arn, err := madmin.ParseARN(arnStr)
    		if err != nil {
    			return sameTarget, errorCodes.ToAPIErrWithErr(ErrBucketRemoteArnInvalid, err)
    		}
    		if arn.Type != madmin.ReplicationService {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top