https://github.com/halide/Halide
Raw File
Tip revision: d1d7b245bb17eb9cad9521f00d722312a451b0f4 authored by Steven Johnson on 03 February 2022, 00:42:24 UTC
cpp-generator-v2-experiment-KEEP
Tip revision: d1d7b24
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