Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 201 for JPoint (0.64 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. tensorflow/c/c_api.h

    // `proto` must point to an array of `proto_len` bytes representing a
    // binary-serialized TensorShapeProto.
    TF_CAPI_EXPORT extern void TF_SetAttrTensorShapeProto(
        TF_OperationDescription* desc, const char* attr_name, const void* proto,
        size_t proto_len, TF_Status* status);
    // `protos` and `proto_lens` must point to arrays of length `num_shapes`.
    // `protos[i]` must point to an array of `proto_lens[i]` bytes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/internal/obj/arm/asm5.go

    	case AMOVWD:
    		if sc&C_UBIT == 0 {
    			o |= 1 << 7 /* signed */
    		}
    		return o | 0xe<<24 | 0xb<<20 | 8<<16 | 0xa<<8 | 4<<4 | 0<<18 | 1<<8 // toint, double
    
    	case AMOVFW:
    		if sc&C_UBIT == 0 {
    			o |= 1 << 16 /* signed */
    		}
    		return o | 0xe<<24 | 0xb<<20 | 8<<16 | 0xa<<8 | 4<<4 | 1<<18 | 0<<8 | 1<<7 // toint, double, trunc
    
    	case AMOVDW:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top