Skip to content

Commit 10fede2

Browse files
LessUpCopilot
andcommitted
Fix type name in kernel catalog test fixture
Use KernelCatalogEntry instead of KernelEntry to match the actual struct name in src/kernels/kernel_catalog.cuh. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 3acf9a2 commit 10fede2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_kernel_catalog.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class KernelCatalogTest : public ::testing::Test {
2323
catalog_ = &getKernelCatalog();
2424
}
2525

26-
const std::vector<KernelEntry>* catalog_;
26+
const std::vector<KernelCatalogEntry>* catalog_;
2727
};
2828

2929
TEST_F(KernelCatalogTest, CatalogNotEmpty) {

0 commit comments

Comments
 (0)