https://github.com/halide/Halide
Raw File
Tip revision: 81ea212bb7b4fc0a06b5f8f6f22ce621ac3fac6c authored by Dillon Sharlet on 23 October 2018, 05:20:47 UTC
WIP enable storage scheduling on outputs.
Tip revision: 81ea212
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