Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for max8 (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func QueryDosDevice(deviceName *uint16, targetPath *uint16, max uint32) (n uint32, err error) {
    	r0, _, e1 := syscall.Syscall(procQueryDosDeviceW.Addr(), 3, uintptr(unsafe.Pointer(deviceName)), uintptr(unsafe.Pointer(targetPath)), uintptr(max))
    	n = uint32(r0)
    	if n == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

    ^bb0(%arg0: tensor<? x f32>, %arg1: f32, %arg2: f32):
      // CHECK: "tfl.fake_quant"(%arg0)  <{max = 1.400000e+00 : f32, min = 3.000000e-01 : f32, narrow_range = false, num_bits = 6 : i32}> : (tensor<?xf32>) -> tensor<?xf32>
      %1 = "tfl.fake_quant"(%arg0) {num_bits = 6 : i32, narrow_range = false, min = 0.3:f32, max = 1.4:f32} : (tensor<? x f32>) -> tensor<? x f32>
      func.return %1 : tensor<? x f32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        are only kept in the context rather than the ops folded/IR mutated.
      }];
    
      let constructor = "TF::CreateTFShapeInferencePass()";
    
      let options = [
        Option<"max_iterations_", "max-iterations", "int64_t", /*default=*/"10",
               "Maximum shape inference iterations">,
        Option<"input_arg_shapes_", "input-arg-shapes", "std::string", /*default=*/"",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "reason": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    	EM_ST200         Machine = 100 /* STMicroelectronics (www.st.com) ST200 microcontroller */
    	EM_IP2K          Machine = 101 /* Ubicom IP2xxx microcontroller family */
    	EM_MAX           Machine = 102 /* MAX Processor */
    	EM_CR            Machine = 103 /* National Semiconductor CompactRISC microprocessor */
    	EM_F2MC16        Machine = 104 /* Fujitsu F2MC16 */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	defer afterTest(t)
    
    	for _, maxSize := range []int64{100, 1_000, 1_000_000} {
    		for _, requestSize := range []int64{100, 1_000, 1_000_000} {
    			t.Run(fmt.Sprintf("max size %d request size %d", maxSize, requestSize),
    				func(t *testing.T) {
    					run(t, func(t *testing.T, mode testMode) {
    						testMaxBytesHandler(t, mode, maxSize, requestSize)
    					}, testNotParallel)
    				})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "POR", argLength: 2, reg: fp21, asm: "POR", commutative: true, resultInArg0: true},   // inclusive or, applied to X regs (for float min/max).
    
    		{name: "LEAQ", argLength: 1, reg: gp11sb, asm: "LEAQ", aux: "SymOff", rematerializeable: true, symEffect: "Addr"}, // arg0 + auxint + offset encoded in aux
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      LogicalResult matchAndRewrite(
          mhlo::ReduceWindowOp rw, OpAdaptor adaptor,
          ConversionPatternRewriter& rewriter) const final {
        // Check that the reduce-window is a max-reduce-window.
        if (failed(MatchBinaryReduceFunction<mhlo::MaxOp>(rw.getBody())))
          return failure();
    
        // Check that this is a floating point reduce window with a rank of 4 or 5.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    								"Access-Control-Allow-Origin":  "cors.com",
    								"Access-Control-Allow-Methods": "POST,GET",
    								"Access-Control-Allow-Headers": "X-Foo-Bar,X-Foo-Baz",
    								"Access-Control-Max-Age":       "86400",
    							})),
    					}
    				}(),
    			},
    			{
    				name: "get",
    				opts: func() echo.CallOptions {
    					return echo.CallOptions{
    						Port: echo.Port{
    							Name: "http",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.5.md

    * Fix leaking ingress resources in federated ingress e2e test. ([#34652](https://github.com/kubernetes/kubernetes/pull/34652), [@quinton-hoole](https://github.com/quinton-hoole))
    * pvc.Spec.Resources.Requests min and max can be enforced with a LimitRange of type "PersistentVolumeClaim" in the namespace ([#30145](https://github.com/kubernetes/kubernetes/pull/30145), [@markturansky](https://github.com/markturansky))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top