Commit ed2acdc4 authored by charlie's avatar charlie
Browse files

Update comments

parent 3685906c
...@@ -33,7 +33,7 @@ namespace migraphx { ...@@ -33,7 +33,7 @@ namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS { inline namespace MIGRAPHX_INLINE_NS {
namespace op { namespace op {
// Padding mode is default_ for all constant padding. // Padding mode is default_ for fixed shape padding.
// same_lower and same_upper used for dynamic padding. // same_lower and same_upper used for dynamic padding.
enum padding_mode_t enum padding_mode_t
{ {
......
...@@ -96,7 +96,7 @@ struct parse_deconvolution : op_parser<parse_deconvolution> ...@@ -96,7 +96,7 @@ struct parse_deconvolution : op_parser<parse_deconvolution>
kdims, values["dilation"].size(), "PARSE_CONV_TRANSPOSE: inconsistent dilations"); kdims, values["dilation"].size(), "PARSE_CONV_TRANSPOSE: inconsistent dilations");
} }
// TODO: nothing is done with this? // TODO: auto padding needs to be implemented for this parser and operator
if(contains(info.attributes, "auto_pad")) if(contains(info.attributes, "auto_pad"))
{ {
auto s = info.attributes["auto_pad"].s(); auto s = info.attributes["auto_pad"].s();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment