Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for T_nested (0.24 sec)

  1. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

            "properties": {
              "field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

            "properties": {
              "field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

            "properties": {
              "field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

            "properties": {
              "field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      auto variant_type = mlir::dyn_cast<mlir::TF::VariantType>(element_type);
      if (!variant_type) {
        return variant_params;
      }
    
      // We only support up to one nested type in tf_type.variant_type.
      if (variant_type.getSubtypes().size() > 1) {
        return std::nullopt;
      }
      if (variant_type.getSubtypes().empty()) {
        return variant_params;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

            "properties": {
              "field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // (the versions field in graph.proto).
      bool InferShapeForSingleOperation(Operation* op, int64_t max_iterations);
    
      // Infers shape on the provided region, including nested ones, iterate until
      // fix point with a limit of max_iteration.
      // Returns a failure() on error, otherwise returns true to indicate that it
      // reached convergence, false otherwise.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      }
      func.return
      // expected-remark@above {{ID: 9}}
      // expected-remark@above {{Sinks: {8}}}
    }
    
    // -----
    
    // Tests that the pass adds control dependencies in nested regions with
    // tf_device.replicate
    
    func.func @with_replicate(
      // expected-remark@above {{ID: 12}}
      %arg0: tensor<*x!tf_type.resource<tensor<32xf32>>>,
      %arg1: tensor<*x!tf_type.resource<tensor<32xf32>>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    func (tr *TypeRequirement) goString(indent int, field string) string {
    	return fmt.Sprintf("%*s%sTypeRequirement:\n%s", indent, "", field,
    		tr.Type.goString(indent+2, ""))
    }
    
    // NestedRequirement is a nested requirement in a requires expression.
    type NestedRequirement struct {
    	Constraint AST
    }
    
    func (nr *NestedRequirement) print(ps *printState) {
    	ps.writeString(" requires ")
    	ps.print(nr.Constraint)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                             .dyn_cast_or_null<mlir::RankedTensorType>();
      if (input_type && weight_type && input_type.hasStaticShape() &&
          weight_type.hasStaticShape()) {
        // Compute op count from the seven nested loops of
        // tflite::reference_ops::TransposeConv():
        count = 2 * input_type.getNumElements() * weight_type.getDimSize(0) *
                weight_type.getDimSize(1) * weight_type.getDimSize(2);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top