Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for canonicalized (0.28 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      // expected-error @+1 {{found unexpected type 'tensor<!tf_type.resource<tensor<10x3xf32>>>' of operand #0, resource type operands are expected to have been canonicalized away for region based control flow ops}}
      %1:2 = "tf.WhileRegion"(%ta#0, %size) ({
        ^bb0 (%carg0: tensor<!tf_type.resource>, %carg1: tensor<i32>):
          %pred = "tf._SomeOp"(%carg1) : (tensor<i32>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

            return this.fileLocator.getParent();
        }
    
    
        /**
         * Returns the full uncanonicalized URL of this SMB resource. An
         * <code>SmbFile</code> constructed with the result of this method will
         * result in an <code>SmbFile</code> that is equal to the original.
         *
         * @return The uncanonicalized full URL of this SMB resource.
         */
    
        public String getPath () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      return success();
    }
    
    // Lifts loads/stores from an IfOp or CaseOp's branches.
    template <class CaseOrIfOp>
    LogicalResult HandleCaseOrIfOp(CaseOrIfOp op, ArrayRef<func::FuncOp> branches) {
      // For canonicalized If/Case, there should not be any resource outputs
      int64_t non_resource_results = op.getNumResults();
    
      llvm::SmallDenseMap<int64_t, ResourceArgUseInfo> resource_arg_uses;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

            }
          }
    
        fun username(username: String) =
          apply {
            this.encodedUsername = username.canonicalize(encodeSet = USERNAME_ENCODE_SET)
          }
    
        fun encodedUsername(encodedUsername: String) =
          apply {
            this.encodedUsername =
              encodedUsername.canonicalize(
                encodeSet = USERNAME_ENCODE_SET,
                alreadyEncoded = true,
              )
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    	name        *ir.Name
    	offset      int64
    	width       int64
    	splitOf     SlKeyIdx // idx in slkeys slice in slotCanonicalizer
    	splitOffset int64
    }
    
    // lookup looks up a LocalSlot in the slot canonicalizer "sc", returning
    // a canonical index for the slot, and adding it to the table if need
    // be. Return value is the canonical slot index, and a boolean indicating
    // whether the slot was found in the table already (TRUE => found).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                            result.getProblems().add(problem);
                            continue;
                        }
    
                        if (Os.IS_WINDOWS) {
                            // we don't canonicalize on unix to avoid interfering with symlinks
                            try {
                                moduleFile = moduleFile.getCanonicalFile();
                            } catch (IOException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Note: this must match If statement lowering.
    (CLIJ {s390x.LessOrGreater} (LOCGR {d} (MOVDconst [0]) (MOVDconst [x]) cmp) [0] yes no)
      && int32(x) != 0
      => (BRC {d} cmp yes no)
    
    // Canonicalize BRC condition code mask by removing impossible conditions.
    // Integer comparisons cannot generate the unordered condition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    		// the package does not exist.
    		// Other errors may affect package loading, but not resolution.
    		if _, err := fsys.Stat(absDir); err != nil {
    			if os.IsNotExist(err) {
    				// Canonicalize OS-specific errors to errDirectoryNotFound so that error
    				// messages will be easier for users to search for.
    				return "", &fs.PathError{Op: "stat", Path: absDir, Err: errDirectoryNotFound}
    			}
    			return "", err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    _Replace TF BatchMatMul op by TF Einsum op._
    
    ### `-tf-broadcast-fold`
    
    _Fold explicit broadcasts into the following operations if they support implicit broadcasting on their operand._
    
    ### `-tf-canonicalize-compile-and-replicate-attributes`
    
    _Canonicalize compilation and replication attributes._
    
    A pass that converts existing compilation and replication attributes into
    unified attributes. For example, `_tpu_replicate="cluster"` in the
    following code
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

                                  int32_t idx, BoolAttr use_32bit) {
      if (auto ranked_ty =
              mlir::dyn_cast_or_null<RankedTensorType>(input.getType())) {
        // Canonicalize negative index.
        if (idx < 0) {
          idx += ranked_ty.getRank();
        }
        // Return a ConstOp if it's static dimension.
        if (!ranked_ty.isDynamicDim(idx)) {
          return builder->create<TF::ConstOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top