Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for rounds (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        ArrayRef<int64_t> bounds = hlo::encodingToBounds(input_ty.getEncoding());
        // The input type has bounded dynamic dimension.
        if (!bounds.empty()) {
          SmallVector<int64_t> new_bounds(bounds.begin(), bounds.end());
          SmallVector<int64_t> new_shape(shape.begin(), shape.end());
          // If dimension of the input type is dynamic. Update the
          // bounds of the dim with the new type if needed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

      return absl::InvalidArgumentError(
          absl::StrCat("found ", kDeviceTPUSystem, " devices with conflicting ",
                       attribute, "s '", a, "' and '", b, "'"));
    }
    
    // Find TPU_SYSTEM:0 devices in `devices`. If multiple TPU_SYSTEM devices are
    // found, the first one lexicographically is returned. If no TPU_SYSTEM device
    // is found or if there are multiple TPU_SYSTEM devices with different jobs or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    		defer func() {
    			cache.updatedAt = time.Now()
    			store.unlock()
    		}()
    
    		_, found := cache.iamUsersMap[accessKey]
    
    		// Check for regular user access key
    		if !found {
    			err = store.loadUser(ctx, accessKey, regUser, cache.iamUsersMap)
    			if _, found = cache.iamUsersMap[accessKey]; found {
    				// load mapped policies
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. .bazelrc

    build:linux --copt="-Wno-all"
    build:linux --copt="-Wno-extra"
    build:linux --copt="-Wno-deprecated"
    build:linux --copt="-Wno-deprecated-declarations"
    build:linux --copt="-Wno-ignored-attributes"
    build:linux --copt="-Wno-array-bounds"
    
    # Add unused-result as an error on Linux.
    build:linux --copt="-Wunused-result"
    build:linux --copt="-Werror=unused-result"
    # Add switch as an error on Linux.
    build:linux --copt="-Wswitch"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	for addr < lastAddr {
    		// Find the last symbol we'd write.
    		idx := -1
    		for i, s := range syms {
    			if ldr.AttrSubSymbol(s) {
    				continue
    			}
    
    			// If the next symbol's size would put us out of bounds on the total length,
    			// stop looking.
    			end := ldr.SymValue(s) + ldr.SymSize(s)
    			if end > lastAddr {
    				break
    			}
    
    			// We're gonna write this symbol.
    			idx = i
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            quant_parameters) {
      auto type = mlir::cast<TensorType>(value.getType());
    
      // TFLite requires tensor shape only for the inputs and constants.
      // However, we output all known shapes for better round-tripping
      auto check_shape =
          [&](llvm::ArrayRef<int64_t> shape_ref) -> mlir::LogicalResult {
        auto is_out_of_range = [](int64_t dim) {
          return dim > std::numeric_limits<int32_t>::max();
        };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top