mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Fixes #ISSUE_NUMBER Pull Request resolved: https://github.com/pytorch/pytorch/pull/128301 Approved by: https://github.com/ezyang, https://github.com/r-barnes
16 lines
340 B
C++
16 lines
340 B
C++
#pragma once
|
|
#include <torch/csrc/Export.h>
|
|
#include <torch/csrc/lazy/core/ir_metadata.h>
|
|
#include <optional>
|
|
#include <vector>
|
|
|
|
namespace torch {
|
|
namespace lazy {
|
|
|
|
std::optional<SourceLocation> TORCH_PYTHON_API GetPythonFrameTop();
|
|
|
|
std::vector<SourceLocation> TORCH_PYTHON_API GetPythonFrames();
|
|
|
|
} // namespace lazy
|
|
} // namespace torch
|