https://github.com/halide/Halide
Raw File
Tip revision: 88f2956f8c996e86d8f688ef8eb77949cbde1495 authored by Steven Johnson on 09 September 2022, 23:40:56 UTC
Allow use of bool|int|float for Generator type args
Tip revision: 88f2956
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