https://github.com/halide/Halide
Raw File
Tip revision: 38c4e5ab5aae266ef9270e5ca7aa7d5ab6b40cd1 authored by Steven Johnson on 19 April 2018, 02:13:46 UTC
Remove scalpel left in patient
Tip revision: 38c4e5a
mips_cpu_features.cpp
#include "HalideRuntime.h"

namespace Halide { namespace Runtime { namespace Internal {

WEAK CpuFeatures halide_get_cpu_features() {
    // MIPS 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