Следуя инструкциям, я написал следующую конфигурацию
Код: Выделить всё
target.os = Target::NoOS;
target.arch = Target::RISCV;
target.bits = 32;
std::vector features;
features.push_back(Target::NoRuntime);
target.set_features(features);
downcast8.compile_to_file("riscv_blur", {}, "downcast8", target);
Код: Выделить всё
% terminate called after throwing an instance of 'Halide::CompileError'
% Aborted (core dumped)
Известна ли проблема с Halide и RISC-V или я что-то не так сделал?
Подробнее здесь: https://stackoverflow.com/questions/792 ... for-risc-v