https://github.com/halide/Halide
Raw File
Tip revision: 0d50bc9f823efc78d615842d59cc2b5f1460bfc2 authored by Steven Johnson on 08 August 2019, 20:16:16 UTC
Merge pull request #4117 from halide/srj-incl
Tip revision: 0d50bc9
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