#include "verify_program.hpp" #include #include #include struct test_conv3d : verify_program { migraphx::program create_program() const { migraphx::program p; auto input = p.add_parameter("x", migraphx::shape{migraphx::shape::float_type, {4, 3, 3, 3, 3}}); auto weights = p.add_parameter("w", migraphx::shape{migraphx::shape::float_type, {4, 3, 3, 3, 3}}); p.add_instruction( migraphx::op::convolution{{0, 0, 0}, {1, 1, 1}, {1, 1, 1}}, input, weights); return p; } };