Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 174 for Requires (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          return op.emitOpError(
              "requires value operand to have rank at least two with `NHWC` data "
              "format");
      } else {
        // Op definition requires data_format to be either NHWC or NCHW.
        DCHECK_EQ(format, tensorflow::TensorFormat::FORMAT_NCHW);
        if (!HasRankAtLeast(op.getValue(), 3))
          return op.emitOpError(
              "requires value operand to have rank at least three with `NCHW` data "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      // expected-error @+1 {{requires value operand to have rank at least two with `NHWC` data format}}
      %0 = "tf.BiasAdd"(%arg0, %arg1) {data_format = "NHWC"} : (tensor<3xf32>, tensor<3xf32>) -> tensor<3xf32>
      func.return %0 : tensor<3xf32>
    }
    
    // -----
    
    func.func @testBiasAdd(%arg0: tensor<2x3xf32>, %arg1: tensor<3xf32>) -> tensor<2x3xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      }
    
      if (!IsOfRankOrUnranked(op.getDepth(), 0)) {
        return op.emitOpError() << "requires depth to be a scalar";
      }
      if (!IsOfRankOrUnranked(op.getOnValue(), 0)) {
        return op.emitOpError() << "requires on_value to be a scalar";
      }
      if (!IsOfRankOrUnranked(op.getOffValue(), 0)) {
        return op.emitOpError() << "requires off_value to be a scalar";
      }
    
      DenseIntElementsAttr depth_attr;
    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. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if skip(c) {
    		return nil
    	}
    	name := c.Name.Copy(fn, skip)
    	requires := c.Requires.Copy(fn, skip)
    	if name == nil && requires == nil {
    		return fn(c)
    	}
    	if name == nil {
    		name = c.Name
    	}
    	if requires == nil {
    		requires = c.Requires
    	}
    	c = &Constraint{Name: name, Requires: requires}
    	if r := fn(c); r != nil {
    		return r
    	}
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics --tf-tpu-rewrite=tpu-compile-metadata-debug | FILECHECK_OPTS="" FileCheck %s
    
    // Tests module with missing `tf.versions` attribute.
    
    // expected-error@+1 {{requires attribute 'tf.versions'}}
    module attributes {tf.devices = ["/job:worker/replica:0/task:0/device:CPU:0", "/job:worker/replica:0/task:0/device:TPU_SYSTEM:0", "/job:worker/replica:0/task:0/device:TPU:0"]} {
      func.func @missing_tf_versions() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        return rewriter.notifyMatchFailure(conv_op, "requires static shape");
      mhlo::ConvDimensionNumbersAttr dnums = conv_op.getDimensionNumbers();
    
      auto lhs_dilation = conv_op.getLhsDilation().value();
      if (lhs_dilation.isSplat() && lhs_dilation.getSplatValue<int64_t>() == 1)
        return rewriter.notifyMatchFailure(conv_op,
                                           "requires non-trivial lhs_dilation");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    		if tls.ServerCertificate == "" {
    			v = AppendValidation(v, fmt.Errorf("MUTUAL TLS requires a server certificate"))
    		}
    		if tls.PrivateKey == "" {
    			v = AppendValidation(v, fmt.Errorf("MUTUAL TLS requires a private key"))
    		}
    		if tls.CaCertificates == "" {
    			v = AppendValidation(v, fmt.Errorf("MUTUAL TLS requires a client CA bundle"))
    		}
    	}
    	if tls.CaCrl != "" {
    		if tls.CredentialName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          return op.emitOpError() << "requires 'output' number of elements to "
                                     "match 'input' number of elements, but got "
                                  << output_ty_size << " and " << input_ty_size;
      }
    
      if (!TF::AreCastCompatible({output_ty, expected_ty}))
        return op.emitOpError()
               << "requires 'output' type " << output_ty
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //		Toolchain string
    //		Godebug   []Godebug
    //		Require   []Require
    //		Exclude   []Module
    //		Replace   []Replace
    //		Retract   []Retract
    //	}
    //
    //	type ModPath struct {
    //		Path       string
    //		Deprecated string
    //	}
    //
    //	type Godebug struct {
    //		Key   string
    //		Value string
    //	}
    //
    //	type Require struct {
    //		Path     string
    //		Version  string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

      KONNECTIVITY_AGENT_KEY_BASE64=$(get-env-val "${master_env}" "KONNECTIVITY_AGENT_KEY")
    }
    
    # Update or verify required gcloud components are installed
    # at minimum required version.
    # Assumed vars
    #   KUBE_PROMPT_FOR_UPDATE
    function update-or-verify-gcloud() {
      local sudo_prefix=""
      if [ ! -w "$(dirname "$(which gcloud)")" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top