https://github.com/halide/Halide
Raw File
Tip revision: 3f7e8908b8871d1ce167037b5f877a664c044358 authored by Steven Johnson on 14 April 2022, 20:25:29 UTC
Python: make Func implicitly convertible to Stage (#6702) (#6708)
Tip revision: 3f7e890
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 Internal
}  // namespace Runtime
}  // namespace Halide
back to top