Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 138 for JPoint (0.13 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    // %2 = stablehlo.constant  // Input 1 inverse scale 1 / s1.
    // %3 = stablehlo.constant  // Input 1 zero point z1 (i8).
    // %4 = stablehlo.constant  // Input 1 zero point z1 (i32).
    // %5 = stablehlo.constant  // Input 2 inverse scale 1 / s2.
    // %6 = stablehlo.constant  // Input 2 zero point z2 (i8).
    // %7 = stablehlo.constant  // Input 2 zero point z2 (i32).
    // %8 = stablehlo.constant  // Input 3 inverse scale 1 / s3.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    // Go value if possible; otherwise it returns x.
    // A complex constant that can be represented as a float (such as 1.2 + 0i)
    // is returned as a floating point value; if a floating point value can be
    // represented as an integer (such as 1.0) it is returned as an integer value.
    // This ensures that constants of different kind but equal value (such as
    // 1.0 + 0i, 1.0, 1) result in the same value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    				Level1b: 9,
    				Level1c: 10,
    				Level1d: 11,
    				Level1e: 12,
    			},
    			Loop: Loop{
    				Loop1: 13,
    				Loop2: 14,
    			},
    			Embed0p: Embed0p{
    				Point: image.Point{X: 15, Y: 16},
    			},
    			Embed0q: Embed0q{
    				Point: Point{Z: 17},
    			},
    			embed: embed{
    				Q: 18,
    			},
    		},
    	},
    	{
    		CaseName: Name(""),
    		in:       `{"hello": 1}`,
    		ptr:      new(Ambig),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    		overage = mappedReady - memoryLimit
    	}
    
    	if nonHeapMemory+overage >= memoryLimit {
    		// We're at a point where non-heap memory exceeds the memory limit on its own.
    		// There's honestly not much we can do here but just trigger GCs continuously
    		// and let the CPU limiter reign that in. Something has to give at this point.
    		// Set it to heapMarked, the lowest possible goal.
    		return c.heapMarked
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    	// signal a completion point.
    	incnwait := atomic.Xadd(&work.nwait, +1)
    	if incnwait > work.nproc {
    		println("runtime: work.nwait=", incnwait,
    			"work.nproc=", work.nproc)
    		throw("work.nwait > work.nproc")
    	}
    
    	if incnwait == work.nproc && !gcMarkWorkAvailable(nil) {
    		// This has reached a background completion point. Set
    		// gp.param to a non-nil value to indicate this. It
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    		}
    
    		// We'll releasem after this point and thus this P may run
    		// something else. We must clear the worker mode to avoid
    		// attributing the mode to a different (non-worker) G in
    		// traceGoStart.
    		pp.gcMarkWorkerMode = gcMarkWorkerNotWorker
    
    		// If this worker reached a background mark completion
    		// point, signal the main GC goroutine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    // Go value if possible; otherwise it returns x.
    // A complex constant that can be represented as a float (such as 1.2 + 0i)
    // is returned as a floating point value; if a floating point value can be
    // represented as an integer (such as 1.0) it is returned as an integer value.
    // This ensures that constants of different kind but equal value (such as
    // 1.0 + 0i, 1.0, 1) result in the same value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework.go

    // point. This is used to simplify iterating over all extension points supported by the
    // frameworkImpl.
    type extensionPoint struct {
    	// the set of plugins to be configured at this extension point.
    	plugins *config.PluginSet
    	// a pointer to the slice storing plugins implementations that will run at this
    	// extension point.
    	slicePtr interface{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cri_stats_provider_test.go

    func TestCRIListPodStats(t *testing.T) {
    	ctx := context.Background()
    	var (
    		imageFsMountpoint = "/test/mount/point"
    		unknownMountpoint = "/unknown/mount/point"
    		imageFsInfo       = getTestFsInfo(2000)
    		rootFsInfo        = getTestFsInfo(1000)
    
    		sandbox0           = makeFakePodSandbox("sandbox0-name", "sandbox0-uid", "sandbox0-ns", false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. src/internal/trace/order.go

    	return nil
    }
    
    // pState is the state of a proc at a point in the trace.
    type pState struct {
    	id     ProcID
    	status go122.ProcStatus
    	seq    seqCounter
    
    	// rangeState is the state of special time ranges bound to this proc.
    	rangeState
    }
    
    // mState is the state of a thread at a point in the trace.
    type mState struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top