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

neilisaac / torch   python

Repository URL to install this package:

Version: 1.8.0 

/ include / torch / csrc / cuda / Stream.h

#ifndef THCP_STREAM_INC
#define THCP_STREAM_INC

#include <torch/csrc/Stream.h>
#include <c10/cuda/CUDAStream.h>
#include <torch/csrc/python_headers.h>
#include <THC/THC.h>

struct THCPStream : THPStream{
  at::cuda::CUDAStream cuda_stream;
};
extern PyObject *THCPStreamClass;

void THCPStream_init(PyObject *module);

inline bool THCPStream_Check(PyObject* obj) {
  return THCPStreamClass && PyObject_IsInstance(obj, THCPStreamClass);
}

#endif // THCP_STREAM_INC