Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 99 for nominator (0.16 sec)

  1. src/go/constant/value_test.go

    	"2.718281828",
    	"3.14159265358979323e-10",
    	"1e100",
    	"1e1000",
    }
    
    func TestFractions(t *testing.T) {
    	for _, test := range fracTests {
    		x := val(test)
    		// We don't check the actual numerator and denominator because they
    		// are unlikely to be 100% correct due to floatVal rounding errors.
    		// Instead, we compute the fraction again and compare the rounded
    		// result.
    		q := BinaryOp(Num(x), token.QUO, Denom(x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

              [(IEEEFloatTensor $l)]>;
    
    // Performs a substitution of FloorDiv for integer tensors, which required
    // additional correction for a negative numerator / denominator. Equivalent
    // pseudocode is shown below:
    //
    // T z = x / y
    // return (z * y != x && (x < 0) != (y < 0)) ? z - 1 : z
    //
    // BroadcastToDimensions is used to compute the broadcast attr to higher
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        // CHECK-DAG: %[[SCALED_L2:.*]] = "tf.Mul"(%[[ADAGRAD_LR]], %[[L2]]) : (tensor<4xf32>, tensor<f32>) -> tensor<4xf32>
        // CHECK-DAG: %[[DENOMINATOR:.*]] = "tf.Add"(%[[ONE]], %[[SCALED_L2]]) : (tensor<f32>, tensor<4xf32>) -> tensor<4xf32>
        // CHECK-DAG: %[[VAR_NEW:.*]] = "tf.Div"(%[[NUMERATOR]], %[[DENOMINATOR]]) : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    ne=v(W=>{l();"use strict";W.__esModule=!0;W.UNIVERSAL=W.TAG=W.STRING=W.SELECTOR=W.ROOT=W.PSEUDO=W.NESTING=W.ID=W.COMMENT=W.COMBINATOR=W.CLASS=W.ATTRIBUTE=void 0;var Nv="tag";W.TAG=Nv;var $v="string";W.STRING=$v;var jv="selector";W.SELECTOR=jv;var zv="root";W.ROOT=zv;var Vv="pseudo";W.PSEUDO=Vv;var Uv="nesting";W.NESTING=Uv;var Wv="id";W.ID=Wv;var Gv="comment";W.COMMENT=Gv;var Hv="combinator";W.COMBINATOR=Hv;var Yv="class";W.CLASS=Yv;var Qv="attribute";W.ATTRIBUTE=Qv;var Jv="universal";W.UNIVERSAL=Jv});var Zi=v((Or,Mc)=>{l();"use...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  5. src/runtime/mgcpacer.go

    	if assistDuration > 0 {
    		idleUtilization = float64(c.idleMarkTime.Load()) / float64(assistDuration*int64(procs))
    	}
    	// Determine the cons/mark ratio.
    	//
    	// The units we want for the numerator and denominator are both B / cpu-ns.
    	// We get this by taking the bytes allocated or scanned, and divide by the amount of
    	// CPU time it took for those operations. For allocations, that CPU time is
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        }
      }
    
      DumpGraphToFile("mark_for_compilation_annotated", new_graph, flib_def_);
    }
    
    string RatioToString(int numerator, int denominator) {
      return absl::StrFormat("%d / %d (%.2f%%)", numerator, denominator,
                             (100.0 * numerator) / denominator);
    }
    
    void MarkForCompilationPassImpl::VLogClusteringSummary() {
      if (!VLOG_IS_ON(2)) {
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. pkg/controller/disruption/disruption.go

    	// When the user specifies a fraction of pods that must be available, we
    	// use as the fraction's denominator
    	// SUM_{all c in C} scale(c)
    	// where C is the union of C_p1, C_p2, ..., C_pN
    	// and each C_pi is the set of controllers controlling the pod pi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  8. docs/debugging/xl-meta/main.go

    // shardSize returns the shard size for a given block size and data blocks.
    func shardSize(blockSize, dataBlocks int) (sz int) {
    	if dataBlocks == 0 {
    		// do nothing on invalid input
    		return
    	}
    	// Make denominator positive
    	if dataBlocks < 0 {
    		blockSize = -blockSize
    		dataBlocks = -dataBlocks
    	}
    	sz = blockSize / dataBlocks
    	if blockSize > 0 && blockSize%dataBlocks != 0 {
    		sz++
    	}
    	return
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    - a `readObject` method with no corresponding `writeObject`; `readObject` must eventually call `ObjectInputStream.defaultReadObject`;
    - a `writeReplace` method to allow the class to nominate a replacement to be written;
    - a `readResolve` method to allow the class to nominate a replacement for the object just read;
    
    The following _Java Object Serialization_ features are **not** supported:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. src/go/constant/value.go

    			r, _ := x.val.Rat(nil)
    			return makeInt(r.Num())
    		}
    	case unknownVal:
    		break
    	default:
    		panic(fmt.Sprintf("%v not Int or Float", x))
    	}
    	return unknownVal{}
    }
    
    // Denom returns the denominator of x; x must be [Int], [Float], or [Unknown].
    // If x is [Unknown], or if it is too large or small to represent as a
    // fraction, the result is [Unknown]. Otherwise the result is an [Int] >= 1.
    func Denom(x Value) Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
Back to top