/******************************************************************************* * * 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 { namespace KernelGraph::CoordinateGraph { /** * Coordinate/index transformer. * * Workgroup and Workitem (work coordinates) are implicitly * set if a context is passed to the constructor. */ class Transformer { public: Transformer() = delete; Transformer(CoordinateGraph const* graph); Transformer(CoordinateGraph const* graph, Expression::ExpressionTransducer transducer); /** * Set expression transducer. */ void setTransducer(Expression::ExpressionTransducer); /** * Set the index expression for the dimension. */ void setCoordinate(int, Expression::ExpressionPtr); /** * Get the index expression for the dimension. */ Expression::ExpressionPtr getCoordinate(int) const; /** * Determine if dimension has a value already. */ bool hasCoordinate(int) const; /** * Remove the index expression for the dimension. */ void removeCoordinate(int); /** * Set the Transformer's coordinate graph. */ void setCoordinateGraph(CoordinateGraph const* graph) { AssertFatal(graph != nullptr); m_graph = graph; } auto const& getIndexes() const { return m_indexes; } /** * Forward (bottom-up) coordinate transform. * * Given current location (see set()), traverse the graph * until the `dsts` dimensions are reached. */ std::vector forward(std::vector const&) const; /** * Reverse (top-down) coordinate transform. */ std::vector reverse(std::vector const&) const; /** * Forward incremental coordinate transform. */ std::vector forwardStride(int, Expression::ExpressionPtr, std::vector const&) const; /** * Reverse incremental coordinate transform. */ std::vector reverseStride(int, Expression::ExpressionPtr, std::vector const&) const; /** * True if we can reach the target. */ bool hasPath(std::vector const&, bool forward) const; /** * Implicitly set indexes for all Workgroup and Workitem dimensions in the graph. */ void fillExecutionCoordinates(ContextPtr context); private: Expression::ExpressionPtr transduce(Expression::ExpressionPtr exp) const; std::vector transduce(std::vector exps) const; template std::vector stride(std::vector const&, bool forward, Visitor& visitor) const; std::map m_indexes; CoordinateGraph const* m_graph; Expression::ExpressionTransducer m_transducer; }; } }