https://github.com/halide/Halide
Raw File
Tip revision: f3e62a9b7ebf51b8699130473d3200e6b5d63d65 authored by Steven Johnson on 29 November 2023, 20:44:36 UTC
Merge branch 'abadams/fix_7867' into srj/async-test
Tip revision: f3e62a9
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