mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01: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
|