24ab820a11
Fixed texture driver APIs failure
85 lines
2.6 KiB
C++
85 lines
2.6 KiB
C++
/*
|
|
Copyright (c) 2015 - present Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <hsa/hsa.h>
|
|
#include <hsa/hsa_ext_amd.h>
|
|
|
|
#include <cstddef>
|
|
#include <istream>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
struct ihipModuleSymbol_t;
|
|
using hipFunction_t = ihipModuleSymbol_t*;
|
|
|
|
namespace std
|
|
{
|
|
template<>
|
|
struct hash<hsa_agent_t> {
|
|
size_t operator()(hsa_agent_t x) const
|
|
{
|
|
return hash<decltype(x.handle)>{}(x.handle);
|
|
}
|
|
};
|
|
}
|
|
|
|
inline
|
|
constexpr
|
|
bool operator==(hsa_agent_t x, hsa_agent_t y)
|
|
{
|
|
return x.handle == y.handle;
|
|
}
|
|
|
|
namespace hip_impl
|
|
{
|
|
struct Kernel_descriptor {
|
|
std::uint64_t kernel_object_;
|
|
std::uint32_t group_size_;
|
|
std::uint32_t private_size_;
|
|
std::string name_;
|
|
|
|
operator hipFunction_t() const
|
|
{ // TODO: this is awful and only meant for illustration.
|
|
return reinterpret_cast<hipFunction_t>(
|
|
const_cast<Kernel_descriptor*>(this));
|
|
}
|
|
};
|
|
|
|
const std::unordered_map<
|
|
hsa_agent_t, std::vector<hsa_executable_t>>& executables();
|
|
const std::unordered_map<
|
|
std::uintptr_t,
|
|
std::vector<std::pair<hsa_agent_t, Kernel_descriptor>>>& functions();
|
|
const std::unordered_map<std::uintptr_t, std::string>& function_names();
|
|
std::unordered_map<std::string, void*>& globals();
|
|
|
|
hsa_executable_t load_executable(
|
|
const std::string& file,
|
|
hsa_executable_t executable,
|
|
hsa_agent_t agent);
|
|
} // Namespace hip_impl.
|