Home
last modified time | relevance | path

Searched refs:opaque_ (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/
Dshape_test.cc35 const Shape opaque_ = ShapeUtil::MakeOpaqueShape(); member in xla::__anon868a99970111::ShapeTest
43 ShapeUtil::MakeTupleShape({opaque_, scalar_, matrix_, matrix2_});
51 for (const Shape& shape : {opaque_, token_, scalar_, matrix_, matrix2_, in TEST_F()
60 EXPECT_EQ("opaque[]", opaque_.ToString()); in TEST_F()
69 EXPECT_EQ("opaque[]", opaque_.ToString(/*print_layout=*/true)); in TEST_F()
111 EXPECT_TRUE(opaque_.is_static()); in TEST_F()
181 {opaque_, scalar_, matrix_, matrix2_, tuple_, nested_tuple_}, in TEST_F()
/external/tensorflow/tensorflow/stream_executor/
Ddevice_memory.h63 : opaque_(opaque), size_(size), is_sub_buffer_(is_sub_buffer) {} in opaque_() function
67 bool is_null() const { return opaque_ == nullptr; } in is_null()
84 void *opaque() { return opaque_; } in opaque()
85 const void *opaque() const { return opaque_; } in opaque()
102 opaque_ = opaque; in Reset()
107 void *opaque_; // Platform-dependent value representing allocated memory.
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_instructions.cc2049 opaque_(opaque.begin(), opaque.end()), in HloCustomCallInstruction()
2064 opaque_(opaque.begin(), opaque.end()), in HloCustomCallInstruction()
2085 proto.set_custom_call_opaque(opaque_); in ToProto()
2121 if (!opaque_.empty()) { in ExtraAttributesToStringImpl()
2122 extra.push_back(StrCat("opaque=\"", CEscape(opaque_), "\"")); in ExtraAttributesToStringImpl()
2172 opaque_ == casted_other.opaque_; in IdenticalSlowPath()
Dhlo_instructions.h1201 const string& opaque() const { return opaque_; } in opaque()
1238 string opaque_; variable