mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 05:34:18 +08:00
Follows #131034 Pull Request resolved: https://github.com/pytorch/pytorch/pull/131735 Approved by: https://github.com/ezyang
10 lines
215 B
C++
10 lines
215 B
C++
#pragma once
|
|
|
|
#include <torch/csrc/Export.h>
|
|
#include <torch/csrc/jit/api/module.h>
|
|
|
|
namespace torch::jit {
|
|
|
|
TORCH_API const std::vector<Function*>& getAllBuiltinFunctionsFor(Symbol name);
|
|
} // namespace torch::jit
|