Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/stream_executor/
Ddevice_memory.h63 : opaque_(opaque), size_(size) {} 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()
105 opaque_ = opaque; in Reset()
110 void *opaque_; // Platform-dependent value representing allocated memory.
/external/tensorflow/tensorflow/compiler/xla/
Dshape_test.cc38 const Shape opaque_ = ShapeUtil::MakeOpaqueShape(); member in xla::__anon868a99970111::ShapeTest
46 ShapeUtil::MakeTupleShape({opaque_, scalar_, matrix_, matrix2_});
54 for (const Shape& shape : {opaque_, token_, scalar_, matrix_, matrix2_, in TEST_F()
63 EXPECT_EQ("opaque[]", opaque_.ToString()); in TEST_F()
72 EXPECT_EQ("opaque[]", opaque_.ToString(/*print_layout=*/true)); in TEST_F()
114 EXPECT_TRUE(opaque_.is_static()); in TEST_F()
184 {opaque_, scalar_, matrix_, matrix2_, tuple_, nested_tuple_}, in TEST_F()
218 {opaque_, token_, scalar_, scalar_with_tile_, matrix_, matrix2_, tuple_, in TEST_F()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dcustom_call_thunk.cc38 opaque_(opaque) {} in CustomCallThunk()
59 typed_call_target(gpu_stream, buffers.data(), opaque_.data(), opaque_.size()); in ExecuteOnStream()
Dcustom_call_thunk.h52 const std::string opaque_; variable