https://github.com/halide/Halide
Raw File
Tip revision: 11ba622512123d79b99a2ac81395e572a1ab8fbe authored by Steven Johnson on 24 February 2023, 01:02:40 UTC
Work-in-progress for generator_aot_gpu_multi_context_threaded
Tip revision: 11ba622
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