https://github.com/halide/Halide
Raw File
Tip revision: 434aa117529128a01e4379a22273913fc5aa1290 authored by Alex Reinking on 05 June 2024, 18:45:39 UTC
Use upstream interface for SPIRV-Headers
Tip revision: 434aa11
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