"...git@developer.sourcefind.cn:modelzoo/qwen3_vllm.git" did not exist on "d8977d01948aaa98ab3cb6a0325e6a4b73c6ca79"
partition.cpp 481 Bytes
Newer Older
Paul's avatar
Paul committed
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <migraphx/partition.hpp>
#include <migraphx/program.hpp>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {

struct partition_op
{
    std::string label;
    std::string name() const { return "partition"; }
    // TODO: Implement compute_shape and compute
};

Paul's avatar
Format  
Paul committed
14
15
16
void partition(program& p,
               module& root,
               const std::unordered_map<instruction_ref, std::string>& assignments)
Paul's avatar
Paul committed
17
18
19
20
21
{
}

} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx