https://github.com/halide/Halide
Raw File
Tip revision: f38b889a24422eadd49e8afc49a5248a534e1230 authored by Aelphy on 25 April 2023, 22:08:28 UTC
[xtensa] New rewrite rules for narrow_predicate in FindIntrinsics.cpp prevented Optimize to use clamped_dense_ramp. New patterns compensate for that.
Tip revision: f38b889
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