https://github.com/halide/Halide
Raw File
Tip revision: b4569042d1bd442b9dcf6817725297f427b9c20b authored by Steven Johnson on 25 June 2019, 22:05:55 UTC
forward-declare halide_buffer_t_accessor
Tip revision: b456904
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