https://github.com/halide/Halide
Raw File
Tip revision: bd8dad3c16afa283ab654d3a50346332980bc021 authored by Patricia Suriana on 27 June 2016, 05:04:28 UTC
added test for predicated store/load
Tip revision: bd8dad3
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