https://github.com/halide/Halide
Raw File
Tip revision: 1f7c57fea597ee3668347e773f575de95f4b7fc7 authored by Steven Johnson on 12 September 2022, 22:33:14 UTC
Merge branch 'rootjalex/x86-optimize' into srj/xvc-experimetn
Tip revision: 1f7c57f
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