https://github.com/halide/Halide
Raw File
Tip revision: 9f9a64cc1fb2f4aebbbd53a4c7e6f6b6ceadff6d authored by Andrew Adams on 07 December 2017, 19:16:54 UTC
Merge remote-tracking branch 'origin/master' into alina-strided-store
Tip revision: 9f9a64c
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