Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Gcd (0.02 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if skip(gcd) {
    		return nil
    	}
    	key := gcd.Key.Copy(fn, skip)
    	if key == nil {
    		return fn(gcd)
    	}
    	gcd = &GlobalCDtor{Ctor: gcd.Ctor, Key: key}
    	if r := fn(gcd); r != nil {
    		return r
    	}
    	return gcd
    }
    
    func (gcd *GlobalCDtor) GoString() string {
    	return gcd.goString(0, "")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

              align_corners ? output_spatial - 1 : output_spatial;
    
          int64_t gcd =
              tensorflow::MathUtil::GCD(static_cast<uint64_t>(input_spatial_size),
                                        static_cast<uint64_t>(output_spatial_size));
          if ((input_spatial_size % gcd != 0) ||
              (input_spatial_size / gcd != stride) || (dilation - 1 != padding)) {
            return false;
          }
    
          return true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	count uint32
    	pos   uint32
    	inc   uint32
    }
    
    func (ord *randomOrder) reset(count uint32) {
    	ord.count = count
    	ord.coprimes = ord.coprimes[:0]
    	for i := uint32(1); i <= count; i++ {
    		if gcd(i, count) == 1 {
    			ord.coprimes = append(ord.coprimes, i)
    		}
    	}
    }
    
    func (ord *randomOrder) start(i uint32) randomEnum {
    	return randomEnum{
    		count: ord.count,
    		pos:   i % ord.count,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top