Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Sizes (0.06 sec)

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

      return results;
    }
    
    // A struct to hold axes and sizes for a set of dimensions.
    struct DimensionVector {
      llvm::ArrayRef<int64_t> AxesArray() const { return axes; }
      llvm::ArrayRef<int64_t> SizesArray() const { return sizes; }
    
      llvm::SmallVector<int64_t, 4> axes;
      llvm::SmallVector<int64_t, 4> sizes;
    };
    
    // Create a tensor that is reshaped from input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        return op.emitOpError() << "requires N to be at least 2, got " << op.getN();
    
      if (op.getShape().size() != op.getOffset().size())
        return op.emitOpError()
               << "requires sizes of shapes and offsets to be the same, got sizes "
               << op.getShape().size() << " and " << op.getOffset().size();
    
      auto ranked_dim =
          mlir::dyn_cast<RankedTensorType>(op.getConcatDim().getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

            return op.emitOpError(
                "cannot have more than one dynamic dimension in split sizes");
          dynamic_dim_index = dim.index();
        } else {
          total_dim_size += dim_val;
        }
      }
    
      if (!dynamic_dim_index && total_dim_size != input_dim_size)
        return op.emitOpError(
                   "split sizes must sum up to the dimension size along split "
                   "dimension, found ")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    // Verify operand types and the result type:
    //
    // 1. Operand type ranks must be equal to the output type rank.
    //
    // 2. Operand dimension sizes (except dimension `axis`) must be equal to
    //    previously seen dimension sizes of the same dimension.
    //
    // 3. Sum of operand dimension sizes of the `axis` dimension must be equal to
    //    the dimension size of the `axis` dimension of output.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    		Help:      "Distribution of object sizes in the bucket, includes label for the bucket name",
    		Type:      histogramMetric,
    	}
    }
    
    func getBucketObjectVersionsMD() MetricDescription {
    	return MetricDescription{
    		Namespace: bucketMetricNamespace,
    		Subsystem: objectsSubsystem,
    		Name:      versionDistribution,
    		Help:      "Distribution of object sizes in the bucket, includes label for the bucket name",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Select operator";
    
      let description = [{
        Select values of 'x' if the corresponding value of 'condition' is true or
        the value of 'y' if false. There are valid condition input sizes:
    
        1. Either the same shape (in which case the select is elementwise), or
        2. condition must be Rank 1 and match over the first dimension.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    	rsOpts volume.NodeResizeOptions) (bool, error) {
    
    	supportsExpansion, expandableVolumePlugin := og.checkIfSupportsNodeExpansion(volumeToMount)
    
    	if supportsExpansion {
    		// lets use sizes handed over to us by caller for comparison
    		if rsOpts.NewSize.Cmp(rsOpts.OldSize) > 0 {
    			pv := volumeToMount.VolumeSpec.PersistentVolume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        if (!k_values_or.has_value() || !k_indices_or.has_value()) return failure();
        int32_t k_values = k_values_or.value();
        int32_t k_indices = k_indices_or.value();
        // We don't match two SliceOp with different sizes.
        if (k_values != k_indices && !values.use_empty() && !indices.use_empty())
          return failure();
    
        // Start replacing.
        auto k = !values.use_empty() ? k_values : k_indices;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      @Test
      fun writeTimeouts() {
        val server = MockWebServer()
        // Sockets on some platforms can have large buffers that mean writes do not block when
        // required. These socket factories explicitly set the buffer sizes on sockets created.
        val socketBufferSize = 4 * 1024
        server.serverSocketFactory =
          object : DelegatingServerSocketFactory(getDefault()) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               "Maximum shape inference iterations">,
        Option<"input_arg_shapes_", "input-arg-shapes", "std::string", /*default=*/"",
               "Input tensor shapes. Shapes for different tensors are separated by ':', and dimension sizes for the same tensor are separated by ','">,
      ];
    }
    
    def StripNoinlineAttributePass : Pass<"tf-strip-noinline-attribute", "ModuleOp"> {
      let summary = "Strip the tf._noinline attribute from top-level functions.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top