OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:embedded_computations
(Results
1 - 2
of
2
) sorted by null
/external/tensorflow/tensorflow/compiler/xla/tools/
interactive_graphviz.cc
277
auto
embedded_computations
= comp->MakeEmbeddedComputationsList();
local
278
std::cout << " " <<
embedded_computations
.size() << " embedded computation"
279
<< (
embedded_computations
.size() != 1 ? "s" : "")
280
<< (!
embedded_computations
.empty() ? ":" : ".") << std::endl;
281
for (const HloComputation* c :
embedded_computations
) {
/external/tensorflow/tensorflow/compiler/xla/service/
hlo_computation_test.cc
114
auto
embedded_computations
= computation->MakeEmbeddedComputationsList();
local
115
EXPECT_EQ(3,
embedded_computations
.size());
118
EXPECT_EQ(negate_computation, *
embedded_computations
.begin());
119
EXPECT_THAT(
embedded_computations
,
Completed in 106 milliseconds