ai-content-maker/.venv/Lib/site-packages/torch/include/ATen/native/Cross.h

15 lines
260 B
C
Raw Normal View History

2024-05-03 04:18:51 +03:00
#pragma once
#include <ATen/native/DispatchStub.h>
namespace at {
class Tensor;
namespace native {
using cross_fn = void(*)(const Tensor&, const Tensor&, const Tensor&, const int64_t d);
DECLARE_DISPATCH(cross_fn, cross_stub);
}} // namespace at::native