HomeSort by relevance Sort by last modified time
    Searched defs:control_deps (Results 1 - 7 of 7) sorted by null

  /external/tensorflow/tensorflow/cc/framework/
scope_internal.h 48 const std::vector<Operation>& control_deps() const { return control_deps_; } function in class:tensorflow::Scope::Impl
74 std::vector<Operation> control_deps, bool clear_control_deps);
scope.cc 120 std::vector<Operation> control_deps, bool clear_control_deps)
129 : (control_deps.insert(control_deps.begin(),
132 control_deps)),
298 const std::vector<Operation>& Scope::control_deps() const { function in class:tensorflow::Scope
430 const gtl::ArraySlice<Operation>& control_deps) const {
433 std::vector<Operation>(control_deps.begin(), control_deps.end()),
  /external/tensorflow/tensorflow/compiler/jit/
node_matchers.h 100 const absl::optional<NodeSeqMatcher>& control_deps() const { function in class:tensorflow::testing::matchers::impl::NodeMatcherProperties
131 void set_control_deps(NodeSeqMatcher control_deps) {
133 control_deps_ = std::move(control_deps);
143 !control_deps().has_value() && !attr().has_value();
163 absl::Span<const ::testing::Matcher<const Node*>> control_deps);
219 // Matches a node with control dependences `control_deps`.
221 // `control_deps` are unordered and will match the control deps of a node in any
224 impl::NodeMatcherProperties CtrlDeps(Ts... control_deps) {
225 return impl::CtrlDeps({control_deps...});
encapsulate_util.cc 275 std::vector<string> control_deps; local
278 &control_deps);
287 for (const string& control_input : control_deps) {
node_matchers.cc 176 std::vector<const Node*> control_deps; variable
179 control_deps.push_back(e->src());
185 !control_dep_set->MatchAndExplain(control_deps, &inner_listener)) {
416 if (prop.control_deps()) {
419 ::testing::UnorderedElementsAreArray(*prop.control_deps());
462 absl::Span<const ::testing::Matcher<const Node*>> control_deps) {
464 absl::c_copy(control_deps, std::back_inserter(control_deps_vector));
  /external/tensorflow/tensorflow/core/common_runtime/
constant_folding.cc 290 gtl::FlatSet<Node*>& control_deps = (*constant_control_deps)[n]; local
301 control_deps.insert(e->src());
308 control_deps.insert(parent_deps.begin(), parent_deps.end());
465 // 'control_deps' is the set of nodes that should be control predecessors of the
469 const Tensor& constant, const gtl::FlatSet<Node*>& control_deps,
548 if (control_deps.empty()) {
551 for (Node* node : control_deps) {
646 const gtl::FlatSet<Node*>& control_deps = local
650 control_deps, opts.max_constant_size_in_bytes, generate_new_name)) {
  /external/tensorflow/tensorflow/core/grappler/optimizers/
function_optimizer.cc 257 absl::flat_hash_set<string> control_deps; member in struct:tensorflow::grappler::__anon45146::FunctionSpecialization
554 absl::flat_hash_set<string>* control_deps) {
555 // Record node control dependencies in the control_deps set.
560 control_deps->insert(input);
603 if (!specialization.control_deps.empty()) {
610 for (const string& ctrl : specialization.control_deps) {
815 absl::flat_hash_set<string> control_deps local
    [all...]

Completed in 348 milliseconds