mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
Summary: Skip building extensions if windows following https://github.com/pytorch/pytorch/pull/67161#issuecomment-958062611 Related issue: https://github.com/pytorch/pytorch/issues/67073 cc ngimel xwang233 ptrblck Pull Request resolved: https://github.com/pytorch/pytorch/pull/67735 Reviewed By: bdhirsh Differential Revision: D32141250 Pulled By: ngimel fbshipit-source-id: 9bfdb7cf694c99f6fc8cbe9033a12429b6e4b6fe
18 lines
424 B
C++
18 lines
424 B
C++
#include <torch/extension.h>
|
|
#include <ATen/cuda/CUDAContext.h>
|
|
|
|
#include <cusolverDn.h>
|
|
|
|
|
|
torch::Tensor noop_cusolver_function(torch::Tensor x) {
|
|
cusolverDnHandle_t handle;
|
|
TORCH_CUSOLVER_CHECK(cusolverDnCreate(&handle));
|
|
TORCH_CUSOLVER_CHECK(cusolverDnDestroy(handle));
|
|
return x;
|
|
}
|
|
|
|
|
|
PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
|
|
m.def("noop_cusolver_function", &noop_cusolver_function, "a cusolver function");
|
|
}
|