Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cpuHog (0.65 sec)

  1. src/runtime/pprof/pprof_test.go

    // otherwise under race detector the samples will be in the race runtime.
    func cpuHog1(x int) int {
    	return cpuHog0(x, 1e5)
    }
    
    func cpuHog0(x, n int) int {
    	foo := x
    	for i := 0; i < n; i++ {
    		if foo > 0 {
    			foo *= foo
    		} else {
    			foo *= foo + 1
    		}
    	}
    	return foo
    }
    
    func cpuHog2(x int) int {
    	foo := x
    	for i := 0; i < 1e5; i++ {
    		if foo > 0 {
    			foo *= foo
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

    void TensorHandleSilentCopy(bool async,
                                TFE_ContextDevicePlacementPolicy global_policy,
                                TFE_ContextDevicePlacementPolicy thread_policy,
                                bool cpu_op) {
      std::unique_ptr<TF_Status, decltype(&TF_DeleteStatus)> status(
          TF_NewStatus(), TF_DeleteStatus);
      TFE_ContextOptions* opts = TFE_NewContextOptions();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
Back to top