https://github.com/halide/Halide
Raw File
Tip revision: 3b3c7f3e30b410770818e925f28a6d9146aa25fc authored by Steven Johnson on 04 August 2023, 22:28:36 UTC
Update run-clang-tidy.sh
Tip revision: 3b3c7f3
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