https://github.com/halide/Halide
Raw File
Tip revision: 0e251fbef7297848a02ed33c6293049af64087f8 authored by Steven Johnson on 18 March 2023, 00:24:35 UTC
WIP
Tip revision: 0e251fb
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 Internal
}  // namespace Runtime
}  // namespace Halide
back to top