Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for radix (0.04 sec)

  1. tensorflow/compiler/mlir/op_or_arg_name_mapper.cc

      while (true) {
        probe_name.resize(probe_prefix_size);
        // TODO(jpienaar): Subtract one so that the initial suffix is 0 instead
        // of 1.
        // TODO(jpienaar): Switch to radix 36 and update tests.
        llvm::APInt(32, val++).toString(probe_name, /*Radix=*/10, /*Signed=*/false);
        if (IsUnique(probe_name)) {
          // Insert/find if prefix with appended number is unique.
          auto probe_name_it = name_to_count_.try_emplace(probe_name, 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc_64bit.go

    )
    
    // levelBits is the number of bits in the radix for a given level in the super summary
    // structure.
    //
    // The sum of all the entries of levelBits should equal heapAddrBits.
    var levelBits = [summaryLevels]uint{
    	summaryL0Bits,
    	summaryLevelBits,
    	summaryLevelBits,
    	summaryLevelBits,
    	summaryLevelBits,
    }
    
    // levelShift is the number of bits to shift to acquire the radix for a given level
    // in the super summary structure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/math/big/floatconv.go

    	// special-case 0
    	if len(z.mant) == 0 {
    		z.prec = prec
    		z.acc = Exact
    		z.form = zero
    		f = z
    		return
    	}
    	// len(z.mant) > 0
    
    	// The mantissa may have a radix point (fcount <= 0) and there
    	// may be a nonzero exponent exp. The radix point amounts to a
    	// division by b**(-fcount). An exponent means multiplication by
    	// ebase**exp. Finally, mantissa normalization (shift left) requires
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/jenkins.adoc

    From the left navigation bar select "New Item > Freestyle project".
    Enter a new name for the project. We'll pick "gradle-site-plugin" for the project.
    
    Select the radio button "Git" in the section "Source Code Management".
    Enter the URL of the GitHub repository: `https://github.com/gradle/gradle-site-plugin.git`.
    
    image::ci-systems/jenkins-scm.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top