Merge pull request #29 from CharlesCNorton/patch-3

fix: correct spelling
This commit is contained in:
Ronghang Hu 2024-07-30 07:49:01 -07:00 committed by GitHub
commit cd270ed4f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -223,8 +223,8 @@ std::vector<torch::Tensor> get_connected_componnets(
const uint32_t W = inputs.size(3);
AT_ASSERTM(C == 1, "inputs must be [N, 1, H, W] shape");
AT_ASSERTM((H % 2) == 0, "height must be a even number");
AT_ASSERTM((W % 2) == 0, "width must be a even number");
AT_ASSERTM((H % 2) == 0, "height must be an even number");
AT_ASSERTM((W % 2) == 0, "width must be an even number");
// label must be uint32_t
auto label_options =