https://github.com/halide/Halide
Raw File
Tip revision: 25524c2c0bc5e0c15bd905eb247eaf415822dc72 authored by Matthias Kramm on 04 June 2018, 17:21:03 UTC
Add unit test for NotImplementedError from Python extension.
Tip revision: 25524c2
aarch64_cpu_features.cpp
#include "HalideRuntime.h"

namespace Halide { namespace Runtime { namespace Internal {

WEAK CpuFeatures halide_get_cpu_features() {
    // AArch64 has no CPU-specific Features.
    const uint64_t known = 0;
    const uint64_t available = 0;
    CpuFeatures features = {known, available};
    return features;
}

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