Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for _Graph (0.39 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      ModuleOp module = getOperation();
    
      // When allow_tensorlist_pass_through_ == false the target dynamic legal
      // checks will cause this pass to fail if there are any variant type tensors
      // in the graph. The graph should still be treated as valid as long as those
      // variant tensors are not from tf-dialect tensorlist ops. Rather than change
      // the dynamic legalization predicates
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

      int num_retvals = 1;
      TFE_Op* op = TFE_NewOp(ctx, "AddFunction", status);
      ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
      // Add a config_proto attr, to trigger grappler graph rewrites in the current
      // eager runtime.
      if (enable_grappler) {
        tensorflow::ConfigProto config;
        // Do not skip grappler optimization even for small graphs.
        config.mutable_graph_options()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc.go

    // must be allocated to the same stack slot as the phi that uses them.
    // x is now a spilled value and a restore must appear before its first use.
    
    // TODO
    
    // Use an affinity graph to mark two values which should use the
    // same register. This affinity graph will be used to prefer certain
    // registers for allocation. This affinity helps eliminate moves that
    // are required for phi implementations and helps generate allocations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            }
    
            ExecutorService createExecutor(int parallelism) {
                //
                // We need an executor that will not block.
                // We can't use work stealing, as we are building a graph
                // and this could lead to cycles where a thread waits for
                // a task to finish, then execute another one which waits
                // for the initial task...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

         * or even inconsistent. For example, databind 2.9.4 depends on annotations 2.9.0, but we still
         * want to upgrade annotations to the highest version of the platform seen in the graph, which
         * is 2.9.4.1, a **patch** release in this case. This patch release doesn't publish all versions
         */
        def "can align heterogeneous versions"() {
            repository {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

      - Value: 'extra' selects variant: 'bar'
      - Value: 'extra 2' selects variant: 'bar2'"""
        }
    
        def "context travels down to transitive dependencies with external dependencies in graph"() {
            given:
            createDirs("a", "b", "c")
            file('settings.gradle') << "include 'a', 'b', 'c'"
            buildFile << """
                $typeDefs
    
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    // Note that this checks for identical condition as
    // quantize_conv_with_bias_dynamic_fn, omitting stablehlo.maximum.
    // This is because activation clipping which includes 0.0f can be simply
    // omitted from the graph as the lifted function's out_scale and out_zp are
    // already calculated based on the clipped distribution.
    // Note that the resulting scale and zero point should be calculated based on
    // clipped range [0, r_max].
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

    import org.apache.maven.project.artifact.InvalidDependencyVersionException;
    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    import org.codehaus.plexus.util.xml.Xpp3Dom;
    import org.eclipse.aether.graph.DependencyFilter;
    import org.eclipse.aether.repository.RemoteRepository;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * The concern of the project is provide runtime values based on the model.
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    			// supposed we have a top level directory with three
    			// package subdirs, "a", "b", and "c", and
    			// from the top level, a user runs "go test -coverpkg=./... ./...".
    			// This will result in (roughly) the following action graph:
    			//
    			//	build("a")       build("b")         build("c")
    			//	    |               |                   |
    			//	link("a.test")   link("b.test")     link("c.test")
    			//	    |               |                   |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    // but in our usage we often need the opposite: for a given service, what are all the aliases?
    // resolveServiceAliases walks this 'graph' of services and updates the Alias field in-place.
    func resolveServiceAliases(allServices []*Service, configsUpdated sets.Set[ConfigKey]) {
    	// rawAlias builds a map of Service -> AliasFor. So this will be ExternalName -> Service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top