mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/21116 ghimport-source-id: 3c47e335dd80f52216e50e0a215cedc1862a9e78 Reviewed By: eellison Differential Revision: D15552816 Pulled By: zdevito fbshipit-source-id: 708fe87439d94117dca0a26c98f0917f497f718f
15 lines
294 B
C++
15 lines
294 B
C++
#pragma once
|
|
|
|
#include <torch/csrc/WindowsTorchApiMacro.h>
|
|
#include <torch/csrc/jit/script/module.h>
|
|
|
|
namespace torch {
|
|
namespace jit {
|
|
namespace script {
|
|
|
|
TORCH_API const std::vector<std::shared_ptr<Function>>&
|
|
getAllBuiltinFunctionsFor(Symbol name);
|
|
}
|
|
} // namespace jit
|
|
} // namespace torch
|