https://github.com/halide/Halide
Raw File
Tip revision: c1fb3e0624640c6dfe41080ce5263396f57684ef authored by Volodymyr Kysenko on 18 November 2021, 17:59:17 UTC
Comment
Tip revision: c1fb3e0
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