Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 287 for canonicalized (0.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.h

    // spaces) except semicolons.
    //
    // Example: Setting the environment variables
    // `MLIR_BRIDGE_LOG_PASS_FILTER="LegalizeTF;Canonicalizer"` and
    // `MLIR_BRIDGE_LOG_STRING_FILTER="my_string"` will dump IR only for invocations
    // of `LegalizeTF` and `Canonicalizer` where the string `my_string` is contained
    // in the serialized operation on which the pass is invoked. For verbose log
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/abi.go

    		refs: make(map[string]obj.ABISet),
    	}
    }
    
    // canonicalize returns the canonical name used for a linker symbol in
    // s's maps. Symbols in this package may be written either as "".X or
    // with the package's import path already in the symbol. This rewrites
    // both to use the full path, which matches compiler-generated linker
    // symbol names.
    func (s *SymABIs) canonicalize(linksym string) string {
    	if strings.HasPrefix(linksym, `"".`) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

            new_broadcast_shape);
        return success();
      }
    };
    
    #define GEN_PASS_DEF_TENSORFLOWOPTIMIZEPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // Canonicalize operations in functions.
    struct TensorFlowOptimizePass
        : public impl::TensorFlowOptimizePassBase<TensorFlowOptimizePass> {
      LogicalResult initialize(MLIRContext *context) override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/PersistentVcsMetadataCache.java

            }
    
            @Override
            public VersionRef read(Decoder decoder) throws Exception {
                String version = decoder.readString();
                String canonicalId = decoder.readString();
                return GitVersionRef.from(version, canonicalId);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

        }
    
        // Forward the corresponding input to the output
        result.replaceAllUsesWith(branch_args[common_arg_index.value()]);
      }
      return success();
    }
    
    // Canonicalizes a function if. Forwards input argument to resource results and
    // then deletes the resource results.
    LogicalResult CanonicalizeFunctionalIfCase(Operation *op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/FileCopyAction.java

                    didWork = true;
                }
            }
    
            private void renameIfCaseChanged(File target) {
                if (target.exists()) {
                    File canonicalizedTarget = FileUtils.canonicalize(target);
                    if (!Objects.equals(target.getName(), canonicalizedTarget.getName())) {
                        canonicalizedTarget.renameTo(target);
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 17:00:04 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy.go

    }
    
    // AllowUnconditionalUpdate is the default update policy for CustomResourceDefinition objects.
    func (strategy) AllowUnconditionalUpdate() bool {
    	return false
    }
    
    // Canonicalize normalizes the object after validation.
    func (strategy) Canonicalize(obj runtime.Object) {
    }
    
    // ValidateUpdate is the default update validation for an end user updating status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pkg/registry/flowcontrol/flowschema/strategy.go

    func (flowSchemaStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (flowSchemaStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (flowSchemaStrategy) AllowUnconditionalUpdate() bool {
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 11:48:22 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. pkg/registry/networking/ingress/strategy.go

    		warnings = append(warnings, fmt.Sprintf("annotation %q is deprecated, please use 'spec.ingressClassName' instead", annotationIngressClass))
    	}
    	return warnings
    }
    
    // Canonicalize normalizes the object after validation.
    func (ingressStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for Ingress; this means POST is needed to create one.
    func (ingressStrategy) AllowCreateOnUpdate() bool {
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 01:42:41 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/canonicalize_compile_and_replicate_attributes.mlir

    // RUN: tf-opt %s -tf-canonicalize-compile-and-replicate-attributes | FileCheck %s
    
    // CHECK-LABEL: func.func @convert_tpu_replicate
    func.func @convert_tpu_replicate() {
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top