Skip to content

Commit

Permalink
fix compilation on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
apwojcik committed Apr 22, 2024
1 parent e4013bb commit 6915c5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/include/migraphx/argument.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ struct MIGRAPHX_EXPORT argument : raw_data<argument>
data_t m_data{};
};

std::vector<argument> flatten(const std::vector<argument>& args);
MIGRAPHX_EXPORT std::vector<argument> flatten(const std::vector<argument>& args);

MIGRAPHX_EXPORT std::vector<shape> to_shapes(const std::vector<argument>& args);
MIGRAPHX_EXPORT void migraphx_to_value(value& v, const argument& a);
Expand Down
2 changes: 1 addition & 1 deletion src/include/migraphx/shape.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ struct MIGRAPHX_EXPORT shape
};

/// Flatten subshapes to a single vector of non-tuple type of shapes
std::vector<shape> flatten(const std::vector<shape>& shapes);
MIGRAPHX_EXPORT std::vector<shape> flatten(const std::vector<shape>& shapes);

MIGRAPHX_EXPORT void migraphx_to_value(value& v, const shape& s);
MIGRAPHX_EXPORT void migraphx_from_value(const value& v, shape& s);
Expand Down

0 comments on commit 6915c5d

Please sign in to comment.