Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 138 for determinant (0.21 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. src/cmd/internal/metadata/main.go

    	fmt.Printf("# GOARCH: %s\n", runtime.GOARCH)
    	fmt.Printf("# CPU: %s\n", sysinfo.CPUName())
    
    	fmt.Printf("# GOOS: %s\n", runtime.GOOS)
    	ver, err := osinfo.Version()
    	if err != nil {
    		ver = fmt.Sprintf("UNKNOWN: error determining OS version: %v", err)
    	}
    	fmt.Printf("# OS Version: %s\n", ver)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 21:40:36 UTC 2023
    - 876 bytes
    - Viewed (0)
  5. src/runtime/mgcstack.go

    // Also see issue 22350.
    
    // Stack tracing solves the problem of determining which parts of the
    // stack are live and should be scanned. It runs as part of scanning
    // a single goroutine stack.
    //
    // Normally determining which parts of the stack are live is easy to
    // do statically, as user code has explicit references (reads and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/validation.go

    					// If ratcheting is enabled some CEL rules may use optionalOldSelf
    					// For such rules the above validation is not sufficient for
    					// determining if the default value is a valid value to introduce
    					// via create or uncorrelated update.
    					//
    					// Validate an update from nil to the default value to ensure
    					// that the default value pass
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:34:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top