Files
triton/include/isaac/symbolic/io.h
Philippe Tillet cf5028d55b Squashed feature branch:
* Added CUDA support
 * Performance improvements
 * API improvements
 * Added "depth" parameter to GEMM
 * Android cross-compilation
2015-04-29 15:52:21 -04:00

19 lines
407 B
C++

#ifndef ISAAC_SCHEDULER_IO_H
#define ISAAC_SCHEDULER_IO_H
#include <iostream>
#include "isaac/symbolic/expression.h"
namespace isaac
{
std::string to_string(array_expression_node_subtype const & f);
std::string to_string(lhs_rhs_element const & e);
std::ostream & operator<<(std::ostream & os, array_expression::node const & s_node);
std::string to_string(isaac::array_expression const & s);
}
#endif