https://github.com/halide/Halide
Raw File
Tip revision: c3fce09f13377b80506dc2e655f982247864a206 authored by Tzu-Mao Li on 28 August 2019, 20:23:30 UTC
better wording for autodiff error
Tip revision: c3fce09
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