Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for Constraint (0.26 sec)

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

    // General convolution (`feature_group_count` = 1)
    //   * Permutates given filter to `[o, 0, 1, i]` format.
    // Using TransposeOp doesn't work because the quantized dimension
    // changes which violates the constraint for the TransposeOp that the
    // input's and output's element type should be the same.
    DenseIntElementsAttr TransposeFilterInConvolution(
        Location loc, PatternRewriter& rewriter,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

                                            elements.getType().getElementType());
      return elements.reshape(new_type);
    }
    
    // This assumes that the bias is of shape NxCx1x1 and doesn't require transpose
    // Its corresponding constraint is optimize_patterns.td:IsBiasShape()
    ElementsAttr ReshapeNCHWBiasToNHWC(Value v, Attribute a) {
      auto elements = mlir::cast<DenseElementsAttr>(a);
      auto shape = mlir::cast<ShapedType>(v.getType()).getShape();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        as its predecessor. This is because the weight of cut edges is always
        minimized when the `Split` is with its predecessor. This colocation
        constraint will be used by the placer graph optimization to assign a device
        to the op.
    
        This pass should run in the export pipeline after tf-replicate-to-island so
    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. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {item} must be in the future. */
        public static final String CONSTRAINTS_Future_MESSAGE = "{constraints.Future.message}";
    
        /** The key of the message: {item} must be less than or equal to {value}. */
        public static final String CONSTRAINTS_Max_MESSAGE = "{constraints.Max.message}";
    
        /** The key of the message: {item} must be greater than or equal to {value}. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      }
    
      if (auto host_compute_op = dyn_cast<XlaHostComputeOp>(op)) {
        return InferShapeForFunctionAttachedToXlaHostCompute(host_compute_op);
      }
    
      // TODO(jpienaar): Extract function input arg constraint interface.
      // TODO(jpienaar): Unify the shape propagation to functions using interface.
      if (auto map_dataset_op = dyn_cast<MapDatasetOp>(op)) {
        // TODO(jpienaar): The output type of these ops need to be refined.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LocalCache.java

       * penalty of applying the batches is spread across threads so that the amortized cost is slightly
       * higher than performing just the operation without enforcing the capacity constraint.
       *
       * This implementation uses a per-segment queue to record a memento of the additions, removals,
       * and accesses that were performed on the map. The queue is drained on writes and when it exceeds
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

       * penalty of applying the batches is spread across threads so that the amortized cost is slightly
       * higher than performing just the operation without enforcing the capacity constraint.
       *
       * This implementation uses a per-segment queue to record a memento of the additions, removals,
       * and accesses that were performed on the map. The queue is drained on writes and when it exceeds
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

        "io.k8s.api.core.v1.VolumeNodeAffinity": {
          "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.",
          "properties": {
            "required": {
              "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector",
              "description": "Required specifies hard node constraints that must be met."
            }
          },
          "type": "object"
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    FieldName     = identifier .
    Element       = Expression | LiteralValue .
    </pre>
    
    <p>
    The LiteralType's underlying type must be a struct, array, slice, or map type
    (the grammar enforces this constraint except when the type is given
    as a TypeName).
    The types of the elements and keys must be <a href="#Assignability">assignable</a>
    to the respective field, element, and key types of the literal type;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    	IgnoredGoFiles    []string `json:",omitempty"` // .go source files ignored due to build constraints
    	InvalidGoFiles    []string `json:",omitempty"` // .go source files with detected problems (parse error, wrong package name, and so on)
    	IgnoredOtherFiles []string `json:",omitempty"` // non-.go source files ignored due to build constraints
    	CFiles            []string `json:",omitempty"` // .c source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top