mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Follows #132604 Pull Request resolved: https://github.com/pytorch/pytorch/pull/132753 Approved by: https://github.com/Skylion007
10 lines
248 B
C++
10 lines
248 B
C++
#pragma once
|
|
|
|
#include <torch/csrc/jit/api/module.h>
|
|
#include <torch/csrc/jit/ir/ir.h>
|
|
|
|
namespace torch::jit {
|
|
TORCH_API void FuseAddRelu(script::Module& module);
|
|
TORCH_API void FuseAddRelu(std::shared_ptr<Graph>& graph);
|
|
} // namespace torch::jit
|