Skip to content

Commit e08e8fc

Browse files
committed
Overrides added.
1 parent 5f4fc48 commit e08e8fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test-backend-ops.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4091,7 +4091,7 @@ struct test_conv_2d_im2col : public test_case {
40914091
dilation1(dilation1),
40924092
cwhn(cwhn) {}
40934093

4094-
std::vector<std::string> get_input_names() { return { "kernel", "input" }; }
4094+
std::vector<std::string> get_input_names() override { return { "kernel", "input" }; }
40954095

40964096
ggml_tensor * build_graph(ggml_context * ctx) override {
40974097
//printf("Building conv_2d_im2col graph...\n");
@@ -4180,7 +4180,7 @@ struct test_conv_2d : public test_case {
41804180
dilation1(dilation1),
41814181
cwhn(cwhn) {}
41824182

4183-
std::vector<std::string> get_input_names() { return { "kernel", "input" }; }
4183+
std::vector<std::string> get_input_names() override { return { "kernel", "input" }; }
41844184

41854185
ggml_tensor * build_graph(ggml_context * ctx) override {
41864186
//printf("Building conv_2d graph...\n");

0 commit comments

Comments
 (0)