Files
composable_kernel/include/ck/stream_config.hpp
2024-04-15 16:36:49 +00:00

17 lines
393 B
C++
Executable File

// SPDX-License-Identifier: MIT
// Copyright (c) 2018-2023, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
#include <hip/hip_runtime.h>
#include <hip/hip_fp16.h>
struct StreamConfig
{
hipStream_t stream_id_ = nullptr;
bool time_kernel_ = false;
int log_level_ = 0;
mutable int cold_niters_ = 5;
mutable int nrepeat_ = 50;
};