mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
This PR follows #116751. Pull Request resolved: https://github.com/pytorch/pytorch/pull/116486 Approved by: https://github.com/albanD
11 lines
156 B
C++
11 lines
156 B
C++
#pragma once
|
|
|
|
#include <c10/core/InferenceMode.h>
|
|
#include <torch/csrc/Export.h>
|
|
|
|
namespace torch::autograd {
|
|
|
|
using InferenceMode = c10::InferenceMode;
|
|
|
|
}
|