mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-12 01:10:17 +00:00
10 lines
257 B
C++
10 lines
257 B
C++
#pragma once
|
|
#include "host_tensor.hpp"
|
|
#include "common_header.hpp"
|
|
|
|
template <typename TensorDesc>
|
|
void ostream_tensor_descriptor(TensorDesc, std::ostream& os = std::cout)
|
|
{
|
|
ostream_HostTensorDescriptor(make_HostTensorDescriptor(TensorDesc{}), os);
|
|
}
|