mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 13:44:15 +08:00
Follows #131034 Pull Request resolved: https://github.com/pytorch/pytorch/pull/131735 Approved by: https://github.com/ezyang
14 lines
229 B
C++
14 lines
229 B
C++
#pragma once
|
|
|
|
#include <torch/csrc/Export.h>
|
|
#include <cstddef>
|
|
|
|
namespace torch::jit {
|
|
|
|
TORCH_API size_t ComputeEditDistance(
|
|
const char* word1,
|
|
const char* word2,
|
|
size_t maxEditDistance);
|
|
|
|
} // namespace torch::jit
|