optimizer / torch-ext /torch_binding.cpp
iamwyldecat's picture
chore: initial commit
8535e80
raw
history blame contribute delete
224 Bytes
#include <torch/library.h>
#include "registration.h"
#include "torch_binding.h"
TORCH_LIBRARY_EXPAND(TORCH_EXTENSION_NAME, ops) {
// Activation ops
ops.def("dummy() -> ()");
}
REGISTER_EXTENSION(TORCH_EXTENSION_NAME)