Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for Maximum (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    the implementation, might do nothing and simply be an identity
    
    `input`: The tensor that has dynamic dimensions.
    `static_shape`: The static shape of the tensor, corresponds to the maximum bounds of each dimension.
    `output` is the input tensor with no changes done to it.
    
    Example usage:
    
    def tpu_call(args):
      def model_fn(args):
        # do something with dynamic tensor
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	// sys.PhysPageSize is an upper-bound on the physical page size.
    	minPhysPageSize = 4096
    
    	// maxPhysPageSize is the maximum page size the runtime supports.
    	maxPhysPageSize = 512 << 10
    
    	// maxPhysHugePageSize sets an upper-bound on the maximum huge page size
    	// that the runtime supports.
    	maxPhysHugePageSize = pallocChunkBytes
    
    	// pagesPerReclaimerChunk indicates how many pages to scan from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    	// explicitly requested gzip it is not automatically
    	// uncompressed.
    	DisableCompression bool
    
    	// MaxIdleConns controls the maximum number of idle (keep-alive)
    	// connections across all hosts. Zero means no limit.
    	MaxIdleConns int
    
    	// MaxIdleConnsPerHost, if non-zero, controls the maximum idle
    	// (keep-alive) connections to keep per-host. If zero,
    	// DefaultMaxIdleConnsPerHost is used.
    	MaxIdleConnsPerHost int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. cmd/bucket-handlers.go

    			writeErrorResponse(ctx, w, errorCodes.ToAPIErrWithErr(ErrAccessDenied, err), r.URL)
    			return
    		}
    
    		// Ensure that the object size is within expected range, also the file size
    		// should not exceed the maximum single Put size (5 GiB)
    		lengthRange := postPolicyForm.Conditions.ContentLengthRange
    		if lengthRange.Valid {
    			hashReader.SetExpectedMin(lengthRange.Min)
    			hashReader.SetExpectedMax(lengthRange.Max)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    			cidrsForProxier = append(cidrsForProxier, cidr)
    		}
    	}
    	proxier.serviceCIDRs = strings.Join(cidrsForProxier, ",")
    }
    
    const (
    	// Maximum length for one of our chain name prefixes, including the trailing
    	// hyphen.
    	chainNamePrefixLengthMax = 16
    
    	// Maximum length of the string returned from servicePortChainNameBase or
    	// servicePortEndpointChainNameBase.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      EXPECT_THAT(GetBuiltinCode(model_.operator_codes[dequant_idx].get()),
                  Eq(BuiltinOperator_DEQUANTIZE));
    
      const auto& op = subgraph->operators[1].get();
    
      // Check that we have MINIMUM or MAXIMUM operator.
      auto op_builtin_code =
          GetBuiltinCode(model_.operator_codes[op->opcode_index].get());
      ASSERT_TRUE(op_builtin_code == tflite::BuiltinOperator_MINIMUM ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    const maxLengthShift = 16
    
    // maxLengthMask is a mask for the maxLength value.
    const maxLengthMask = 0x1f << maxLengthShift
    
    // MaxLength returns an Option that limits the maximum length of a
    // demangled string. The maximum length is expressed as a power of 2,
    // so a value of 1 limits the returned string to 2 characters, and
    // a value of 16 limits the returned string to 65,536 characters.
    // The value must be between 1 and 30.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       */
    
      // Constants
    
      /**
       * The maximum capacity, used if a higher value is implicitly specified by either of the
       * constructors with arguments. MUST be a power of two no greater than {@code 1<<30} to ensure
       * that entries are indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %2 = "tfl.maximum"(%0, %1) : (tensor<1x6x6x16xf32>, tensor<1x6x6x16xf32>) -> tensor<1x6x6x16xf32>
      func.return %2 : tensor<1x6x6x16xf32>
    
    // CHECK: %0 = "tfl.dequantize"(%arg0)
    // CHECK: %1 = "tfl.dequantize"(%arg1)
    // CHECK: %2 = "tfl.maximum"(%0, %1)
    // CHECK: %3 = "tfl.quantize"(%2)
    // CHECK: %4 = "tfl.dequantize"(%3)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    const usesLR = sys.MinFrameSize > 0
    
    const (
    	// tracebackInnerFrames is the number of innermost frames to print in a
    	// stack trace. The total maximum frames is tracebackInnerFrames +
    	// tracebackOuterFrames.
    	tracebackInnerFrames = 50
    
    	// tracebackOuterFrames is the number of outermost frames to print in a
    	// stack trace.
    	tracebackOuterFrames = 50
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top