ExaTN
tensor_graph_optimizer.hpp
1 #ifndef EXATN_RUNTIME_DAGOPT_HPP_
2 #define EXATN_RUNTIME_DAGOPT_HPP_
3 
4 #include "tensor_graph.hpp"
5 
6 #include <memory>
7 
8 namespace exatn {
9 namespace runtime {
10 
12 
13 public:
14 
15  virtual void optimize(TensorGraph & dag) = 0;
16 
17 };
18 
19 } // namespace runtime
20 } // namespace exatn
21 
22 #endif //EXATN_RUNTIME_DAGOPT_HPP_
exatn
Definition: DriverClient.hpp:10
exatn::runtime::TensorGraphOptimizer
Definition: tensor_graph_optimizer.hpp:11
exatn::runtime::TensorGraph
Definition: tensor_graph.hpp:139