https://github.com/halide/Halide
Raw File
Tip revision: 84d775c3e01f0325d3e7c26f3ccc83d5c6ba5cf9 authored by Steven Johnson on 04 September 2019, 17:08:09 UTC
fix
Tip revision: 84d775c
aarch64_cpu_features.cpp
#include "HalideRuntime.h"
#include "cpu_features.h"

namespace Halide { namespace Runtime { namespace Internal {

WEAK CpuFeatures halide_get_cpu_features() {
    // AArch64 has no CPU-specific Features.
    return CpuFeatures();
}

}}} // namespace Halide::Runtime::Internal
back to top