https://github.com/halide/Halide
Raw File
Tip revision: 94d7f0168da34fbfd15a63e5baa56b1649f23956 authored by Andrew Adams on 02 July 2021, 17:23:21 UTC
Don't reinterpret cast when codegenning vector concat
Tip revision: 94d7f01
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