Skip to content

Commit

Permalink
[vulkan][test] Not use non 1 dilation for conv2d
Browse files Browse the repository at this point in the history
ghstack-source-id: 2b6f6068f388d5dcbbcf4bb7c0a3d1009098bd4c
Pull Request resolved: #48800
  • Loading branch information
IvanKobzarev committed Dec 3, 2020
1 parent 1eed54d commit 2f7b9f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aten/src/ATen/test/vulkan_api_test.cpp
Expand Up @@ -269,7 +269,8 @@ TEST(VulkanAPITest, conv2d) {
constexpr int64_t groups = 1;
constexpr std::array<int64_t, 2u> stride{1, 2};
constexpr std::array<int64_t, 2u> padding{3, 0};
constexpr std::array<int64_t, 2u> dilation{1, 3};
//TODO: Support conv2d with dilation != 1
constexpr std::array<int64_t, 2u> dilation{1, 1};

constexpr struct {
uint32_t batches;
Expand Down

0 comments on commit 2f7b9f5

Please sign in to comment.