-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Split
dynamic shape parsing update
#3034
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
12b1530
Initial
CharlieL7 a89dc24
formatting
CharlieL7 bea9579
FIx split instruction add
CharlieL7 5cbdf93
start tests
CharlieL7 0c8df31
start adding tests
CharlieL7 4464d64
Fix split over fixed dynamic_dimension and add tests
CharlieL7 2c73f36
Merge branch 'develop' into split_dyn_parsing
CharlieL7 fa2f57b
Tidy and formatting
CharlieL7 a76e33b
fix bug
CharlieL7 1915436
Merge branch 'develop' into split_dyn_parsing
CharlieL7 c0e3e72
Merge branch 'develop' into split_dyn_parsing
CharlieL7 c536ff2
python formatting
CharlieL7 f414528
simplify code style
CharlieL7 b30b289
Merge branch 'develop' of github.com:ROCm/AMDMIGraphX into split_dyn_…
CharlieL7 f293d88
Merge branch 'split_dyn_parsing' of github.com:ROCm/AMDMIGraphX into …
CharlieL7 4499a60
Fix bug with last split
CharlieL7 1be475c
Tidy fix
CharlieL7 6f3f699
Regenerate the onnx files
CharlieL7 d0f9246
parse_onnx -> read_onnx
CharlieL7 fb7fa55
Fix read_onnx call again
CharlieL7 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,131 @@ namespace migraphx { | |
inline namespace MIGRAPHX_INLINE_NS { | ||
namespace onnx { | ||
|
||
auto parse_dyn_split(const onnx_parser::node_info& info, | ||
const std::vector<instruction_ref>& args, | ||
int64_t tuned_axis) | ||
{ | ||
if(contains(info.attributes, "split")) | ||
{ | ||
MIGRAPHX_THROW("PARSE_SPLIT: dynamic input and non-fixed split axis and `split` " | ||
"attribute not supported"); | ||
} | ||
if(args.size() == 2) | ||
{ | ||
MIGRAPHX_THROW("PARSE_SPLIT: dynamic input and non-fixed split axis and `split` " | ||
"input not supported"); | ||
} | ||
|
||
std::size_t num_outputs = info.num_outputs; | ||
std::vector<instruction_ref> ret_ins(num_outputs); | ||
|
||
// Doing shape calculations for the splits in the graph | ||
auto split_dim = info.add_instruction( | ||
make_op("dimensions_of", {{"start", tuned_axis}, {"end", tuned_axis + 1}}), args[0]); | ||
shape int64_scalar_shape{shape::int64_type, {1}, {0}}; | ||
auto num_outputs_lit = info.add_literal(literal{int64_scalar_shape, {num_outputs}}); | ||
auto num_outputs_minus_1_lit = info.add_literal(literal{int64_scalar_shape, {num_outputs - 1}}); | ||
// (A + (B - 1)) / B == ceil(A / B) | ||
auto chunk_size = info.add_instruction( | ||
make_op("div"), | ||
info.add_instruction(make_op("add"), split_dim, num_outputs_minus_1_lit), | ||
num_outputs_lit); | ||
for(int n = 0; n < num_outputs - 1; ++n) | ||
{ | ||
// slice(input, starts = {n * chunk_size}, ends = {(n+1) * chunk_size}); axes = | ||
// {tuned_axis} | ||
ret_ins.at(n) = info.add_instruction( | ||
make_op("slice", {{"axes", {tuned_axis}}}), | ||
args[0], | ||
info.add_instruction( | ||
make_op("mul"), chunk_size, info.add_literal(literal{int64_scalar_shape, {n}})), | ||
info.add_instruction(make_op("mul"), | ||
chunk_size, | ||
info.add_literal(literal{int64_scalar_shape, {n + 1}}))); | ||
} | ||
// last slice: slice(input, starts = {n * chunk_size}); ends = max_int, axes = | ||
// {tuned_axis} | ||
ret_ins.at(num_outputs - 1) = info.add_instruction( | ||
make_op("slice", {{"axes", {tuned_axis}}, {"ends", {std::numeric_limits<int64_t>::max()}}}), | ||
args[0], | ||
info.add_instruction(make_op("mul"), | ||
chunk_size, | ||
info.add_literal(literal{int64_scalar_shape, {num_outputs - 1}}))); | ||
return ret_ins; | ||
} | ||
|
||
auto parse_static_split(const onnx_parser::node_info& info, | ||
const onnx_parser& parser, | ||
const std::vector<instruction_ref>& args, | ||
int64_t tuned_axis) | ||
{ | ||
const auto& input_shape = args[0]->get_shape(); | ||
// either static shape or fixed dynamic_dimension for split axis | ||
auto tuned_axis_len = input_shape.to_static(0).lens().at(tuned_axis); | ||
std::vector<int64_t> vec_splits; | ||
if(contains(info.attributes, "split")) | ||
{ | ||
literal s = parser.parse_value(info.attributes.at("split")); | ||
s.visit([&](auto v) { vec_splits.assign(v.begin(), v.end()); }); | ||
} | ||
else if(args.size() == 2) | ||
{ | ||
auto s = args[1]->eval(); | ||
check_arg_empty(s, "PARSE_SPLIT: non-constant `split` input is not supported"); | ||
s.visit([&](auto v) { vec_splits.assign(v.begin(), v.end()); }); | ||
} | ||
// no split attribute, input is equally divided | ||
else | ||
{ | ||
std::size_t num_outputs = info.num_outputs; | ||
// the num_outputs attribute seems to be redundant since we already have | ||
// node_info::num_outputs, but we can still perform an error check | ||
if(contains(info.attributes, "num_outputs")) | ||
{ | ||
num_outputs = parser.parse_value(info.attributes.at("num_outputs")).at<std::size_t>(); | ||
if(num_outputs != info.num_outputs) | ||
{ | ||
MIGRAPHX_THROW("PARSE_SPLIT: num_outputs attribute " + std::to_string(num_outputs) + | ||
" doesn't match actual number of outputs " + | ||
std::to_string(info.num_outputs) + "!"); | ||
} | ||
} | ||
if(tuned_axis_len % num_outputs == 0) | ||
{ | ||
std::size_t chunk_size = tuned_axis_len / num_outputs; | ||
vec_splits.resize(num_outputs, chunk_size); | ||
} | ||
else | ||
{ | ||
std::size_t chunk_size = tuned_axis_len / num_outputs + 1; | ||
std::size_t last_chunk_size = tuned_axis_len - chunk_size * (num_outputs - 1); | ||
vec_splits.resize(num_outputs - 1, chunk_size); | ||
vec_splits.push_back(last_chunk_size); | ||
} | ||
} | ||
|
||
if(std::accumulate(vec_splits.begin(), vec_splits.end(), int64_t(0)) != | ||
static_cast<int64_t>(tuned_axis_len)) | ||
{ | ||
MIGRAPHX_THROW( | ||
"PARSE_SPLIT: sum of split attribute unequal to dim size of axis! tuned axis:" + | ||
std::to_string(tuned_axis_len) + " Output " + to_string_range(vec_splits) + " Rank " + | ||
std::to_string(input_shape.ndim())); | ||
} | ||
|
||
std::vector<instruction_ref> ret_ins; | ||
int64_t start = 0; | ||
for(auto sl : vec_splits) | ||
{ | ||
ret_ins.push_back(info.add_instruction( | ||
make_op("slice", {{"axes", {tuned_axis}}, {"starts", {start}}, {"ends", {start + sl}}}), | ||
args[0])); | ||
start += sl; | ||
} | ||
|
||
return ret_ins; | ||
} | ||
|
||
struct parse_split : op_parser<parse_split> | ||
{ | ||
std::vector<op_desc> operators() const { return {{"Split"}}; } | ||
|
@@ -49,75 +174,22 @@ struct parse_split : op_parser<parse_split> | |
axis = parser.parse_value(info.attributes.at("axis")).at<int>(); | ||
} | ||
|
||
auto lens = args[0]->get_shape().lens(); | ||
int64_t n_rank = lens.size(); | ||
int64_t tuned_axis = tune_axis(n_rank, axis, opd.op_name); | ||
const auto& input_shape = args[0]->get_shape(); | ||
// axis over which the split occurs (split_axis) | ||
int64_t tuned_axis = tune_axis(input_shape.ndim(), axis, opd.op_name); | ||
|
||
std::vector<int64_t> vec_splits; | ||
if(contains(info.attributes, "split")) | ||
{ | ||
literal s = parser.parse_value(info.attributes.at("split")); | ||
s.visit([&](auto v) { vec_splits.assign(v.begin(), v.end()); }); | ||
} | ||
else if(args.size() == 2) | ||
{ | ||
auto s = args[1]->eval(); | ||
check_arg_empty(s, "Split: dynamic shape is not supported"); | ||
s.visit([&](auto v) { vec_splits.assign(v.begin(), v.end()); }); | ||
} | ||
// no split attribute, input is equally divided | ||
else | ||
{ | ||
std::size_t num_outputs = info.num_outputs; | ||
// the num_outputs attribute seems to be redundant since we already have | ||
// node_info::num_outputs, but we can still perform an error check | ||
if(contains(info.attributes, "num_outputs")) | ||
{ | ||
num_outputs = | ||
parser.parse_value(info.attributes.at("num_outputs")).at<std::size_t>(); | ||
if(num_outputs != info.num_outputs) | ||
{ | ||
MIGRAPHX_THROW("PARSE_SPLIT: num_outputs attribute " + | ||
std::to_string(num_outputs) + | ||
" doesn't match actual number of outputs " + | ||
std::to_string(info.num_outputs) + "!"); | ||
} | ||
} | ||
|
||
if(lens[tuned_axis] % num_outputs == 0) | ||
{ | ||
std::size_t chunk_size = lens[tuned_axis] / num_outputs; | ||
vec_splits.resize(num_outputs, chunk_size); | ||
} | ||
else | ||
{ | ||
std::size_t chunk_size = lens[tuned_axis] / num_outputs + 1; | ||
std::size_t last_chunk_size = lens[tuned_axis] - chunk_size * (num_outputs - 1); | ||
vec_splits.resize(num_outputs - 1, chunk_size); | ||
vec_splits.push_back(last_chunk_size); | ||
} | ||
} | ||
auto split_axis_is_fixed = [&]() { | ||
return input_shape.dyn_dims().at(tuned_axis).is_fixed(); | ||
}; | ||
Comment on lines
+181
to
+183
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this can simply be a |
||
|
||
if(std::accumulate(vec_splits.begin(), vec_splits.end(), int64_t(0)) != | ||
static_cast<int64_t>(lens[tuned_axis])) | ||
if(input_shape.dynamic() and not split_axis_is_fixed()) | ||
{ | ||
MIGRAPHX_THROW( | ||
"PARSE_SPLIT: sum of split attribute unequal to dim size of axis! tuned axis:" + | ||
std::to_string(lens[tuned_axis]) + " Output " + to_string_range(vec_splits) + | ||
" Rank " + std::to_string(n_rank) + " Len outs " + to_string_range(lens)); | ||
return parse_dyn_split(info, args, tuned_axis); | ||
} | ||
|
||
std::vector<instruction_ref> ret_ins; | ||
int64_t start = 0; | ||
for(auto sl : vec_splits) | ||
else | ||
{ | ||
ret_ins.push_back(info.add_instruction( | ||
make_op("slice", {{"axes", {axis}}, {"starts", {start}}, {"ends", {start + sl}}}), | ||
args[0])); | ||
start += sl; | ||
return parse_static_split(info, parser, args, tuned_axis); | ||
} | ||
|
||
return ret_ins; | ||
} | ||
}; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can potentially lead to resizing and memory allocation twice for the vector. Ideally, you can allocate vector for the splits once for the size (num_outputs) and then put values in that