https://github.com/halide/Halide
Raw File
Tip revision: 2c92023de1f3341a155bcf5b31c3863ba9988c3d authored by Steven Johnson on 04 October 2018, 17:17:32 UTC
Merge branch 'master' into srj-mak
Tip revision: 2c92023
mips_cpu_features.cpp
#include "HalideRuntime.h"
#include "cpu_features.h"

namespace Halide { namespace Runtime { namespace Internal {

WEAK CpuFeatures halide_get_cpu_features() {
    // MIPS has no CPU-specific Features.
    return CpuFeatures();
}

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