https://github.com/halide/Halide
Raw File
Tip revision: d7adf79c8ffe31852988e2c8248649b2e2f71776 authored by Steven Johnson on 29 July 2019, 19:53:04 UTC
Merge pull request #4062 from halide/srj-aslog
Tip revision: d7adf79
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