2 writes to _graph
Microsoft.ML.EntryPoints (2)
JsonUtils\GraphRunner.cs (2)
32_graph = new EntryPointGraph(_host, nodes); 39_graph = graph;
12 references to _graph
Microsoft.ML.EntryPoints (12)
JsonUtils\GraphRunner.cs (12)
47var missingInputs = _graph.GetMissingInputs(); 51while (_graph.HasRunnableNodes) 58var remainingNodes = _graph.Macros.Union(_graph.NonMacros).Where(x => !x.IsFinished).Select(x => x.Id).ToArray(); 66while ((nextNode = _graph.NonMacros.FirstOrDefault(x => x.CanStart())) != null) 67_graph.RunNode(nextNode); 73while ((nextNode = _graph.Macros.FirstOrDefault(x => x.CanStart())) != null) 74_graph.RunNode(nextNode); 92if (!_graph.TryGetVariable(name, out variable)) 110if (_graph.TryGetVariable(name, out EntryPointVariable variable)) 128if (!_graph.TryGetVariable(name, out variable)) 148if (!_graph.TryGetVariable(name, out variable))