pytorch/torch/csrc/jit/codegen/cuda/interface.h
jiej a6fa3b2682 adding profile_ivalue (#47666)
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/47666

Test Plan: Imported from OSS

Reviewed By: ZolotukhinM

Differential Revision: D25255573

Pulled By: Krovatkin

fbshipit-source-id: 5d8753e4040a3d96105d28d26728125947c7a638
2020-12-09 15:29:15 -08:00

46 lines
1.3 KiB
C++

#pragma once
#include <torch/csrc/WindowsTorchApiMacro.h>
#include <torch/csrc/jit/ir/ir.h>
#include <torch/csrc/jit/runtime/profiling_record.h>
/*
* This file contains APIs for cuda fuser;
*
* We use an empty static struct to hold the function pointers, which are
* registered separately. This is to support cpu-only compilation.
* Registration is done in torch/csrc/jit/codegen/cuda/register_interface.cpp
*/
namespace torch {
namespace jit {
namespace fuser {
namespace cuda {
TORCH_API std::atomic<bool>& getCudaFusionGuardMode();
// dummy struct to allow API registration
struct CudaFuserInterface {
void (*fn_compile_n_)(Node*) = nullptr;
void (*fn_run_n_s_)(const Node*, Stack&) = nullptr;
void (*fn_fuse_graph_)(std::shared_ptr<Graph>&) = nullptr;
bool (*fn_can_fuse_n_)(const Node*) = nullptr;
};
// Get interface, this is used by registration and user facing API internally
C10_EXPORT CudaFuserInterface* getFuserInterface();
C10_EXPORT void compileFusionGroup(Node* fusion_node);
C10_EXPORT void runFusionGroup(const Node* fusion_node, Stack& stack);
C10_EXPORT void fuseGraph(std::shared_ptr<Graph>&);
C10_EXPORT bool canFuseNode(const Node* node);
C10_EXPORT bool complyWith(
const at::Tensor& tensor,
const c10::TensorTypePtr& guard_tensor_type);
} // namespace cuda
} // namespace fuser
} // namespace jit
} // namespace torch