https://github.com/halide/Halide
Raw File
Tip revision: 08afbbcb24debebc5ce189e957daf38ebe8b0934 authored by Andrew Adams on 19 October 2023, 17:12:31 UTC
Stop interleaver from expanding the scope of letstmts
Tip revision: 08afbbc
riscv_cpu_features.cpp
#include "HalideRuntime.h"
#include "cpu_features.h"

namespace Halide {
namespace Runtime {
namespace Internal {

WEAK CpuFeatures halide_get_cpu_features() {
    // For now, no version specific features, though RISCV promises to have many.
    return CpuFeatures();
}

}  // namespace Internal
}  // namespace Runtime
}  // namespace Halide
back to top