Caffe2 - C++ API
A deep learning, cross platform ML framework
dynamic_library_win.cpp
1 #include <c10/util/Exception.h>
2 #include <torch/csrc/jit/fuser/cpu/dynamic_library.h>
3 #include <torch/csrc/utils/disallow_copy.h>
4 
5 namespace torch {
6 namespace jit {
7 namespace fuser {
8 namespace cpu {
9 
10 DynamicLibrary::DynamicLibrary(const char* name) {
11  // NOLINTNEXTLINE(hicpp-signed-bitwise)
12  AT_ERROR("NYI: DynamicLibrary on Windows");
13 }
14 
15 void* DynamicLibrary::sym(const char* name) {
16  AT_ERROR("NYI: DynamicLibrary on Windows");
17 }
18 
19 std::string DynamicLibrary::directoryOf(void* addr) {
20  AT_ERROR("NYI: DynamicLibrary on Windows");
21 }
22 
23 DynamicLibrary::~DynamicLibrary() {}
24 
25 } // namespace cpu
26 } // namespace fuser
27 } // namespace jit
28 } // namespace torch
Definition: jit_type.h:17