https://github.com/halide/Halide
Raw File
Tip revision: 77237d8b86feebacb387227f2a9565c266bcafe4 authored by Steven Johnson on 03 September 2019, 22:58:45 UTC
Add a way for binary2cpp to emit vis=hidden; use this for all our halide_internal_initmod data
Tip revision: 77237d8
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 Halide::Runtime::Internal
back to top