Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for _Graph (0.29 sec)

  1. tensorflow/c/c_api_test.cc

      TF_Status* s = TF_NewStatus();
      TF_Graph* graph = TF_NewGraph();
    
      // Create a simple graph.
      Placeholder(graph, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      ASSERT_TRUE(TF_GraphOperationByName(graph, "feed") != nullptr);
      TF_Operation* oper = ScalarConst(3, graph, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      ASSERT_TRUE(TF_GraphOperationByName(graph, "scalar") != nullptr);
      Neg(oper, graph, s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    			return true
    		}
    	}
    	return false
    }
    
    // Graph returns the graph of module requirements loaded from the current
    // root modules (as reported by RootModules).
    //
    // Graph always makes a best effort to load the requirement graph despite any
    // errors, and always returns a non-nil *ModuleGraph.
    //
    // If the requirements of any relevant module fail to load, Graph also
    // returns a non-nil error of type *mvs.BuildListError.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      }
    
      void runOnOperation() override;
    };
    
    bool UseEmbeddingPipelining(ModuleOp& module) {
      // Enable automated pipelining pass unless:
      // 1. The user disables it via flag, or
      // 2. The graph contains TF.Summary ops. Graphs like this typically only run
      //    for a single step which doesn't work in pipelining.
    
      if (tensorflow::GetBuildXlaOpsPassFlags()
              ->tf_xla_disable_full_embedding_pipelining) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.ArtifactSelectionSpec;
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.conflicts.Conflict;
    import org.gradle.api.internal.artifacts.resolver.DefaultResolutionOutputs;
    import org.gradle.api.internal.artifacts.resolver.ResolutionAccess;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                        }
                    }
                }
            }
        }
    
        @Issue("GRADLE-2555")
        void "can deal with transitive with parent in conflict"() {
            /*
                Graph looks likeā€¦
    
                \--- org:a:1.0
                     \--- org:in-conflict:1.0 -> 2.0
                          \--- org:target:1.0
                               \--- org:target-child:1.0
                \--- org:b:1.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top