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
20 lines
414 B
C++
20 lines
414 B
C++
#pragma once
|
|
|
|
#include <ATen/ATen.h>
|
|
#include <ATen/core/ivalue.h>
|
|
#include <ATen/core/jit_type.h>
|
|
#include <ATen/core/stack.h>
|
|
#include <torch/csrc/Export.h>
|
|
#include <torch/csrc/jit/ir/ir.h>
|
|
|
|
#include <list>
|
|
#include <vector>
|
|
|
|
namespace torch::jit {
|
|
|
|
TORCH_API void InsertGuards(std::shared_ptr<Graph> graph);
|
|
|
|
TORCH_API void RemoveProfilingNodes(const std::shared_ptr<Graph>& graph);
|
|
|
|
} // namespace torch::jit
|