/******************************************************************************* * * MIT License * * Copyright 2024-2025 AMD ROCm(TM) Software * * 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 #include #include #include namespace rocRoller { // KernelInvocation contains the information needed to launch a kernel with // the ExecutableKernel class. struct KernelInvocation { std::array workitemCount = {1, 1, 1}; std::array workgroupSize = {1, 1, 1}; unsigned int sharedMemBytes = 0; }; // The executer class can load a kernel from a string of machine code and // then launch the kernel on a GPU. class ExecutableKernel { public: ExecutableKernel(); ~ExecutableKernel() = default; /** * kernelLoaded returns true if a kernel has already been loaded. * * @return bool */ bool kernelLoaded() const; /** * @brief Loads a kernel from a string of machine code. * * @param instructions A string containing an entire assembly file * @param target The target architecture * @param kernelName The name of the kernel */ void loadKernel(std::string const& instructions, const GPUArchitectureTarget& target, std::string const& kernelName); /** * @brief Loads a kernel from a file. * * @param fileName Assembly file name * @param kernelName The name of the kernel * @param target The target architecture */ void loadKernelFromFile(std::string const& fileName, std::string const& kernelName, const GPUArchitectureTarget& target); /** * @brief Loads a kernel from a file. * * @param fileName Code-object file name * @param kernelName The name of the kernel * @param target The target architecture */ void loadKernelFromCodeObjectFile(std::string const& fileName, std::string const& kernelName, const GPUArchitectureTarget& target); /** * @brief Loads a kernel from a string of machine code. * * @param instructions A string containing an entire assembly file * @param target The target architecture * @param kernelName The name of the kernel */ void loadKernel(std::string const& instructions, ContextPtr context); /** * @brief Execute a kernel on a GPU. * * @param args The arguments to the Kernel * @param invocation Other information needed to launch the kernel. * @param timer HIPTimer that will record how long the kernel took to execute * @param iteration Iteration number within the timer */ void executeKernel(const KernelArguments& args, const KernelInvocation& invocation, std::shared_ptr timer, int iteration); /** * @brief Execute a kernel on a GPU with stream specified * * @param args The arguments to the Kernel * @param invocation Other information needed to launch the kernel. * @param stream The stream the kernel is executed on */ void executeKernel(const KernelArguments& args, const KernelInvocation& invocation, hipStream_t stream = 0); /** * @brief Returns the hipFunction for the kernel */ hipFunction_t getHipFunction() const; private: struct HIPData; std::string m_kernelName; bool m_kernelLoaded; std::shared_ptr m_hipData; /** * @brief Execute a kernel on a GPU with optional timer and stream * * @param args The arguments to the Kernel * @param invocation Other information needed to launch the kernel. * @param timer HIPTimer that will record how long the kernel took to execute * @param iteration Iteration number within the timer * @param stream The stream the kernel is executed on */ void executeKernel(const KernelArguments& args, const KernelInvocation& invocation, std::shared_ptr timer, int iteration, hipStream_t stream); }; } #include