https://github.com/halide/Halide
Raw File
Tip revision: 72224e1bd0bfe610b52aefefcf523fe1c029369b authored by Andrew Adams on 05 April 2021, 17:06:25 UTC
Add explicit cast to remove ambiguous operator== (Fixes #5329)
Tip revision: 72224e1
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