Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

neilisaac / torch   python

Repository URL to install this package:

Version: 1.8.0 

/ include / torch / csrc / jit / frontend / edit_distance.h

#pragma once

#include <torch/csrc/WindowsTorchApiMacro.h>
#include <cstddef>

namespace torch {
namespace jit {

TORCH_API size_t ComputeEditDistance(
    const char* word1,
    const char* word2,
    size_t maxEditDistance);

} // namespace jit
} // namespace torch