"docs/source/guide_ko/distributed-hetero.rst" did not exist on "d2ef24335c3483b242b328b0db26d3084ac40f2f"
nms_kernel.h 255 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <ATen/ATen.h>
#include "../macros.h"

namespace vision {
namespace ops {

VISION_API at::Tensor nms_cpu(
    const at::Tensor& dets,
    const at::Tensor& scores,
    double iou_threshold);

} // namespace ops
} // namespace vision