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 / ATen / native / Cross.h

#pragma once

#include <ATen/ATen.h>
#include <ATen/native/DispatchStub.h>

namespace at { namespace native {

using cross_fn = void(*)(Tensor&, const Tensor&, const Tensor&, const int64_t d);

DECLARE_DISPATCH(cross_fn, cross_stub);

}} // namespace at::native