https://github.com/halide/Halide
Raw File
Tip revision: 66caba9ea68d3a99831b1f2caee37ea87c0918dc authored by Patricia Suriana on 10 April 2018, 16:19:15 UTC
Use explicit Expr cast
Tip revision: 66caba9
mips_cpu_features.cpp
#include "HalideRuntime.h"

namespace Halide { namespace Runtime { namespace Internal {

WEAK CpuFeatures halide_get_cpu_features() {
    // MIPS has no CPU-specific Features.
    const uint64_t known = 0;
    const uint64_t available = 0;
    CpuFeatures features = {known, available};
    return features;
}

}}} // namespace Halide::Runtime::Internal
back to top