Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for graphRoots (0.1 sec)

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

    				}
    			}
    		})
    	}
    
    	var graphRoots []module.Version
    	if inWorkspaceMode() {
    		graphRoots = roots
    	} else {
    		graphRoots = MainModules.Versions()
    	}
    	var (
    		mu       sync.Mutex // guards mg.g and hasError during loading
    		hasError bool
    		mg       = &ModuleGraph{
    			g: mvs.NewGraph(cmpVersion, graphRoots),
    		}
    	)
    
    	if pruning != workspace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

        const GraphDef& auto_clustered_graph_def) {
      testing::ResetClusterSequenceNumber();
      Graph graph(OpRegistry::Global());
      GraphConstructorOptions graph_opts;
      graph_opts.expect_device_spec = true;
      graph_opts.allow_internal_ops = true;
      TF_RETURN_IF_ERROR(
          ConvertGraphDefToGraph(graph_opts, auto_clustered_graph_def, &graph));
    
      // cluster_id -> (operation name -> # of operations)
      const int kNoCluster = -1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top