Caffe2 - C++ API
A deep learning, cross platform ML framework
edit_distance.h
1 #pragma once
2 
3 #include <torch/csrc/WindowsTorchApiMacro.h>
4 #include <cstddef>
5 #include <string>
6 
7 namespace torch {
8 namespace jit {
9 namespace script {
10 
11 TORCH_API size_t ComputeEditDistance(
12  const char* word1,
13  const char* word2,
14  size_t maxEditDistance);
15 
16 }
17 } // namespace jit
18 } // namespace torch
Definition: jit_type.h:17