Skip to content

Commit

Permalink
Fix windows build issue
Browse files Browse the repository at this point in the history
Windows build requires '#include<array>' otherwise we get a compile error when using std:array
  • Loading branch information
gyulaz-htec committed May 23, 2024
1 parent 747c4e5 commit a1cf519
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/onnx/parse_gridsample.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
#include <migraphx/instruction.hpp>
#include <migraphx/make_op.hpp>
#include <migraphx/dfor.hpp>
#include <array>
#include <string>
#include <vector>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
Expand Down

0 comments on commit a1cf519

Please sign in to comment.