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

Repository URL to install this package:

Details    
torch / include / torch / csrc / xpu / Event.h
Size: Mime:
#pragma once

#include <ATen/xpu/XPUEvent.h>
#include <torch/csrc/python_headers.h>

struct THXPEvent {
  PyObject_HEAD at::xpu::XPUEvent xpu_event;
};
extern PyObject* THXPEventClass;

void THXPEvent_init(PyObject* module);

inline bool THXPEvent_Check(PyObject* obj) {
  return THXPEventClass && PyObject_IsInstance(obj, THXPEventClass);
}