Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 351 for _Graph (0.12 sec)

  1. tensorflow/compiler/jit/rearrange_function_argument_pass_test.cc

        auto ret0 = ops::_Retval(s.WithOpName("ret0"), arg1, 0);
        std::unique_ptr<Graph> g(new Graph(OpRegistry::Global()));
        TF_CHECK_OK(s.ToGraph(g.get()));
        FunctionDef *xla_fdef = fdl.add_function();
        TF_CHECK_OK(GraphToFunctionDef(*g, "f3", xla_fdef));
      }
      FunctionLibraryDefinition fld(OpRegistry::Global(), fdl);
    
      // Build the XLA computation graph.
      // "arg0" (T=DT_RESOURCE), "arg1" (T=DT_INT32)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. tensorflow/c/while_loop_test.cc

      // Create outer cond graph
      TF_Operation* six = ScalarConst(6, params_->cond_graph, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      TF_Operation* less_than =
          LessThan(params_->cond_inputs[0], {six, 0}, params_->cond_graph, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      params_->cond_output = {less_than, 0};
    
      // Create outer body graph
      // Init inner graph
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

    import org.gradle.internal.serialize.graph.readEnum
    import org.gradle.internal.serialize.graph.readNonNull
    import org.gradle.internal.serialize.graph.readPropertyValue
    import org.gradle.internal.serialize.graph.withDebugFrame
    import org.gradle.internal.serialize.graph.withIsolate
    import org.gradle.internal.serialize.graph.withPropertyTrace
    import org.gradle.internal.serialize.graph.writeCollection
    import org.gradle.internal.serialize.graph.writeEnum
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

        def sourceFiles
    
        Map<TestFile, List<File>> graph = [:]
        List<TestFile> modifiedFiles = []
    
        def setup() {
            // S1 - D1 \
            //    \ D2  \
            //           D3
            // S2 ------/
            //    \ D4
    
            graph[source1] = [dep1, dep2]
            graph[source2] = [dep3, dep4]
            graph[dep1] = [dep3]
            graph[dep2] = []
            graph[dep3] = []
            graph[dep4] = []
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

    import org.gradle.internal.serialize.graph.BeanStateReaderLookup
    import org.gradle.internal.serialize.graph.BeanStateWriterLookup
    import org.gradle.internal.serialize.graph.Codec
    import org.gradle.internal.serialize.graph.DefaultReadContext
    import org.gradle.internal.serialize.graph.DefaultWriteContext
    import org.gradle.internal.serialize.graph.LoggingTracer
    import org.gradle.internal.serialize.graph.Tracer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tests/BUILD

    [
        [
            tf_library(
                name = "test_graph_tfadd" + suffix,
                testonly = 1,
                config = "test_graph_tfadd.config.pbtxt",
                cpp_class = "AddComp",
                graph = "test_graph_tfadd.pb",
                # This serves as a test for the list of minimal deps included even when
                # include_standard_runtime_deps is False.  If this target fails to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

    import org.gradle.internal.serialize.graph.BeanStateReader
    import org.gradle.internal.serialize.graph.Codec
    import org.gradle.internal.serialize.graph.EncodingProvider
    import org.gradle.internal.serialize.graph.ReadContext
    import org.gradle.internal.serialize.graph.WriteContext
    import org.gradle.internal.serialize.graph.codecs.Decoding
    import org.gradle.internal.serialize.graph.codecs.Encoding
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/build_xla_ops_pass.cc

    }
    }  // namespace
    
    Status BuildXlaOpsPass::Run(const GraphOptimizationPassOptions& options) {
      Graph* graph = options.graph->get();
    
      // Copy out the nodes we want to rewrite to avoid modifying the graph while we
      // iterate on graph->op_nodes().
      std::vector<Node*> xla_compiled_kernels;
      absl::c_copy_if(graph->op_nodes(), std::back_inserter(xla_compiled_kernels),
                      [](const Node* n) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/initorder.go

    	check.Info.InitOrder = check.Info.InitOrder[:0]
    
    	// Compute the object dependency graph and initialize
    	// a priority queue with the list of graph nodes.
    	pq := nodeQueue(dependencyGraph(check.objMap))
    	heap.Init(&pq)
    
    	const debug = false
    	if debug {
    		fmt.Printf("Computing initialization order for %s\n\n", check.pkg)
    		fmt.Println("Object dependency graph:")
    		for obj, d := range check.objMap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/go/types/initorder.go

    	check.Info.InitOrder = check.Info.InitOrder[:0]
    
    	// Compute the object dependency graph and initialize
    	// a priority queue with the list of graph nodes.
    	pq := nodeQueue(dependencyGraph(check.objMap))
    	heap.Init(&pq)
    
    	const debug = false
    	if debug {
    		fmt.Printf("Computing initialization order for %s\n\n", check.pkg)
    		fmt.Println("Object dependency graph:")
    		for obj, d := range check.objMap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top