https://github.com/halide/Halide
Raw File
Tip revision: c62538d482dd2bb1cdec2b6c48e275bb5bce5358 authored by Steven Johnson on 08 November 2022, 22:25:13 UTC
Add a struct with type signatures to output, as compile-time-only alternative to #7149
Tip revision: c62538d
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