Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for _Graph (0.5 sec)

  1. src/cmd/go/internal/modload/load.go

    	if len(mismatches) == 0 {
    		// Since we're running as part of 'go mod tidy', the roots of the module
    		// graph should contain only modules that are relevant to some package in
    		// the package graph. We checked every package in the package graph and
    		// didn't find any mismatches, so that must mean that all of the roots of
    		// the module graph are also consistent.
    		//
    		// If we're wrong, Go 1.16 in -mod=readonly mode will error out with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      Graph* graph = options.graph->get();
      FunctionLibraryDefinition* flib_def = options.flib_def;
    
      // Deadness analysis expects a graph with source and sink edges properly
      // connected but sometimes the incoming graph does not follow this invariant.
      // So fix up the source and sink edges before calling into deadness analysis.
      FixupSourceAndSinkEdges(graph);
    
      for (Node* n : graph->nodes()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        )
        # Tests that the quantized graph outputs similar values. The rtol and atol
        # values are arbitrary.
        self.assertAllClose(new_outputs, expected_outputs, rtol=0.03, atol=0.2)
    
        module_str = self._extract_first_xla_call_module_op(
            self._output_saved_model_path
        )
    
        # Tests that the output graph contains multiply for symmetric
        # dequantization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_function_test.cc

        }
      }
    
      // Run the host graph, which now contains a function and check that
      // outputs are as expected.
      void Run(const std::vector<std::pair<TF_Operation*, TF_Tensor*>>& inputs,
               std::initializer_list<TF_Output> outputs,
               const std::vector<int32_t>& expected_results) {
        // Create a session for this graph.
        CSession csession(host_graph_, s_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.DependencyGraphNode;
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.ResolvedGraphVariant;
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.conflicts.CapabilitiesConflictHandler;
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.strict.StrictVersionConstraints;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    				}
    			}
    
    			mg, _ := rs.Graph(ctx)
    			for prefix := pkg.path; prefix != "."; prefix = path.Dir(prefix) {
    				if v := mg.Selected(prefix); v != "none" {
    					m := module.Version{Path: prefix, Version: v}
    					r := resolveReplacement(m)
    					keep[r] = true
    				}
    			}
    		}
    	}
    
    	if rs.graph.Load() == nil {
    		// We haven't needed to load the module graph so far.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.VisitedArtifactSet
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.results.DefaultVisitedGraphResults
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.results.VisitedGraphResults
    import org.gradle.api.internal.artifacts.publish.DefaultPublishArtifact
    import org.gradle.api.internal.artifacts.result.MinimalResolutionResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    4. Run the builds scripts for the build, applying any requested project plugins.
    5. Calculate the task graph for the requested tasks, running any deferred configuration actions.
    
    Following the configuration phase, Gradle writes a snapshot of the task graph to a new configuration cache entry, for later Gradle invocations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/CacheBuilder.java

     *
     * <p>Usage example:
     *
     * <pre>{@code
     * LoadingCache<Key, Graph> graphs = CacheBuilder.newBuilder()
     *     .maximumSize(10000)
     *     .expireAfterWrite(Duration.ofMinutes(10))
     *     .removalListener(MY_LISTENER)
     *     .build(
     *         new CacheLoader<Key, Graph>() {
     *           public Graph load(Key key) throws AnyException {
     *             return createExpensiveGraph(key);
     *           }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            outputDoesNotContain("transform")
            outputContains("artifacts = [test2-1.5.thing.local (test:test2:1.5), test3-1.5.thing.local (test:test3:1.5)]")
        }
    
        def "file collection queried during task graph calculation can contain the transform of external artifact can consume different transform of external artifact as dependency"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
Back to top