Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

edgify / torch   python

Repository URL to install this package:

Version: 2.0.1+cpu 

/ include / ATen / core / TorchDispatchUtils.h

#pragma once

#include <torch/library.h>
#include <ATen/core/dispatch/Dispatcher.h>
#include <c10/util/ArrayRef.h>
#include <c10/util/Optional.h>
#include <c10/core/impl/TorchDispatchModeTLS.h>

namespace at {
namespace impl {

bool tensor_has_dispatch(const at::Tensor& t);
bool tensorlist_has_dispatch(at::ITensorListRef li);
bool tensorlist_has_dispatch(const c10::List<c10::optional<at::Tensor>>& li);
using c10::impl::dispatch_mode_enabled;

}}