From 03b6d99be08e132630b4fd539d228f5e7531cf83 Mon Sep 17 00:00:00 2001 From: "PoYen, Chen" Date: Wed, 10 Jul 2024 09:33:15 +0000 Subject: [PATCH] Fix typo of HostTensor<>::get_length() --- include/ck_tile/host/host_tensor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ck_tile/host/host_tensor.hpp b/include/ck_tile/host/host_tensor.hpp index 24b7a296b5..918abc69cc 100644 --- a/include/ck_tile/host/host_tensor.hpp +++ b/include/ck_tile/host/host_tensor.hpp @@ -330,7 +330,7 @@ struct HostTensor { } - std::size_t get_legnth(std::size_t dim) const { return mDesc.get_length(dim); } + std::size_t get_length(std::size_t dim) const { return mDesc.get_length(dim); } decltype(auto) get_lengths() const { return mDesc.get_lengths(); }