mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-12 17:26:00 +00:00
19 lines
370 B
C++
19 lines
370 B
C++
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2018-2024, Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <utility>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
namespace ck {
|
|
namespace host {
|
|
|
|
std::unordered_map<std::string_view, std::string_view> GetHeaders();
|
|
|
|
} // namespace host
|
|
} // namespace ck
|