mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-11 17:00:18 +00:00
* change olc cmake * adding online compile to fwd-v4r5r2 * update scripts * remane fwd-v4r5r2 to fwd-v6r1 * clean up
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);
|
|
}
|