stream_config.hpp 169 Bytes
Newer Older
JD's avatar
JD committed
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <hip/hip_runtime.h>
#include <hip/hip_fp16.h>

struct StreamConfig
{
    hipStream_t stream_id_ = nullptr;
    bool time_kernel_      = false;
};