1#include "program_impl.h"
2
3namespace taichi::lang {
4
5ProgramImpl::ProgramImpl(CompileConfig &config_) : config(&config_) {
6}
7
8void ProgramImpl::compile_snode_tree_types(SNodeTree *tree) {
9 // FIXME: Eventually all the backends should implement this
10 TI_NOT_IMPLEMENTED;
11}
12
13} // namespace taichi::lang
14