本文整理汇总了C++中halide::Func::compile_to_bitcode方法的典型用法代码示例。如果您正苦于以下问题:C++ Func::compile_to_bitcode方法的具体用法?C++ Func::compile_to_bitcode怎么用?C++ Func::compile_to_bitcode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类halide::Func
的用法示例。
在下文中一共展示了Func::compile_to_bitcode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: prog01
void prog01()
{
Halide::Var x;
Halide::Func init_cond;
init_cond(x) = 1.0f*x;
Halide::Image<float_t> input, output;
input=init_cond.realize(NX);
Halide::ImageParam inPar(Halide::Float(32), 1, "inPar");
Halide::Func cell;
cell(x)=inPar(x)+1;
{
std::vector<Halide::Argument> arg_vect;
arg_vect.push_back(Halide::Argument("inPar", true, Halide::Int(32)));
cell.compile_to_bitcode("stencil-fusion-01.bc", arg_vect, "blur");
}
for (int t =0; t < 100000; ++t) {
inPar.set(input);
output = cell.realize(NX);
swap(output,input);
}
for (int i = 0; i < NX; ++i)
cout << input(i) << " ";
cout << endl;
}
示例2: func_compile_to_bitcode0
void func_compile_to_bitcode0(h::Func &that, const std::string &filename,
const std::vector<h::Argument> &args,
const std::string fn_name = "",
const h::Target &target = h::get_target_from_environment())
{
that.compile_to_bitcode(filename, args, fn_name, target);
return;
}