MCPcopy Create free account
hub / github.com/apache/arrow / ToString

Method ToString

cpp/src/arrow/gpu/cuda_context.cc:216–221  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

214const char* CudaDevice::type_name() const { return kCudaDeviceTypeName; }
215
216std::string CudaDevice::ToString() const {
217 std::stringstream ss;
218 ss << "CudaDevice(device_number=" << device_number() << ", name=\"" << device_name()
219 << "\")";
220 return ss.str();
221}
222
223bool CudaDevice::Equals(const Device& other) const {
224 if (!IsCudaDevice(other)) {

Callers 5

AsCudaDeviceFunction · 0.45
GetBufferReaderMethod · 0.45
GetBufferWriterMethod · 0.45
AsCudaMemoryManagerFunction · 0.45
TEST_FFunction · 0.45

Calls 1

strMethod · 0.80

Tested by 1

TEST_FFunction · 0.36