Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 98 for determinant (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

          DuplicateShapeDeterminingConstantsPass)
    
      StringRef getArgument() const final {
        return "quant-duplicate-shape-determining-constants";
      }
    
      StringRef getDescription() const final {
        return "Duplicates shape-determining constants. A shape-determining "
               "constant is a constant that are transitively used to change or "
               "determine the shape of a tensor. For example, the second argument "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

    @Experimental
    public interface DependencyResolver extends Service {
    
        /**
         * Collects the transitive dependencies of some artifacts and builds a dependency graph. Note that this operation is
         * only concerned about determining the coordinates of the transitive dependencies and does not actually resolve the
         * artifact files.
         *
         * @param session the {@link Session}, must not be {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/failure/StackTraceClassifier.java

    package org.gradle.internal.problems.failure;
    
    import javax.annotation.Nullable;
    
    /**
     * Classifies stack frames by their {@link StackTraceRelevance relevance}.
     * <p>
     * Classifiers are meant to be heuristic, determining the relevance on the best-effort basis.
     */
    public interface StackTraceClassifier {
    
        StackTraceClassifier USER_CODE = new StackTraceClassifier() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:52:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    //   1) Inserting the @main function, which will become the main Graph.
    //   2) Duplicating shape-determining constants.
    //   3) Converting TF dialect -> tf_executor dialect.
    //   4) Adding initializer function's ops into @main function for correct
    //      resource initialization when loading the exported model.
    //
    // Duplicating shape-determining constants is required to place constants that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DaemonRequestContext.java

    import javax.annotation.Nullable;
    import java.util.Collection;
    
    /**
     * Represents the request context a client has made.
     *
     * This contains the list of properties a client will consider when determining if a daemon is compatible.
     */
    public class DaemonRequestContext {
        private final JavaInfo requestedJvm;
        private final DaemonJvmCriteria jvmCriteria;
        private final Collection<String> daemonOpts;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:49:26 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/SkipUpToDateStep.java

            this.delegate = delegate;
        }
    
        @Override
        public UpToDateResult execute(UnitOfWork work, C context) {
            if (LOGGER.isDebugEnabled()) {
                LOGGER.debug("Determining if {} is up-to-date", work.getDisplayName());
            }
            ImmutableList<String> reasons = context.getRebuildReasons();
            return context.getChanges()
                .filter(__ -> reasons.isEmpty())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/deployment/services.go

    	// Generate a port map from the matching services.
    	// It creates a structure that will allow us to detect
    	// if there are different protocols for the same port.
    	portMap := servicePortMap(matchingSvcs)
    
    	// Determining which ports use more than one protocol.
    	for port := range portMap {
    		// In case there are two protocols using same port number, generate a message
    		protMap := portMap[port]
    		if len(protMap) > 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. pkg/scheduler/util/assumecache/assume_cache_test.go

    		xKey, err := cache.MetaNamespaceKeyFunc(x)
    		if err != nil {
    			tCtx.Fatalf("unexpected error determining key for %v: %v", x, err)
    		}
    		yKey, err := cache.MetaNamespaceKeyFunc(y)
    		if err != nil {
    			tCtx.Fatalf("unexpected error determining key for %v: %v", y, err)
    		}
    		return xKey < yKey
    	}))
    	if diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_composite_functions.cc

      // attribute.
      pm.addNestedPass<func::FuncOp>(createInsertWeightParamPass());
    
      // PrepareQuantizePass uses SymbolTable to fetch relevant GEMM ops for
      // determining quantization attributes. This requires module-level context.
      pm.addPass(createPrepareQuantizePass(options));
    
      QuantizePassOptions quantize_options;
      quantize_options.enable_per_channel_quantized_weight_ =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/AlreadyOnClasspathPluginResolver.java

    import org.gradle.plugin.use.PluginId;
    import org.gradle.plugin.use.tracker.internal.PluginVersionTracker;
    
    import javax.annotation.Nullable;
    
    /**
     * Resolves a plugin either by determining that it is already on the classpath
     * or by delegating to another resolver.
     */
    public class AlreadyOnClasspathPluginResolver implements PluginResolver {
        private final PluginResolver delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top