xref: /aosp_15_r20/external/pytorch/torch/csrc/jit/frontend/edit_distance.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #pragma once
2 
3 #include <torch/csrc/Export.h>
4 #include <cstddef>
5 
6 namespace torch::jit {
7 
8 TORCH_API size_t ComputeEditDistance(
9     const char* word1,
10     const char* word2,
11     size_t maxEditDistance);
12 
13 } // namespace torch::jit
14