Files
composable_kernel/include/ck/stream_config.hpp
Harisankar Sadasivan 7c63aa5f1c changes for debug
2024-07-31 19:07:53 -04:00

20 lines
446 B
C++

// 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;
int cold_niters_ = 0;//HS
int nrepeat_ = 1;//HS
bool flush_cache = false;
int rotating_count = 1;
};