https://github.com/halide/Halide
Raw File
Tip revision: b2a5b3c2d8d99da036f9d59600a550c3d7b50ecc authored by Steven Johnson on 06 August 2021, 16:57:34 UTC
Merge branch 'master' into loop_carry_not_working
Tip revision: b2a5b3c
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