partition.cpp 452 Bytes
Newer Older
Paul's avatar
Paul committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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
};

void partition(program& p, module& root, const std::unordered_map<instruction_ref, std::string>& assignments)
{

}

} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx