https://github.com/halide/Halide
Raw File
Tip revision: 5a17e84395c19570e9e4a6a25df39b4892a65ee5 authored by Steven Johnson on 12 March 2019, 01:42:35 UTC
Sketch of float16 support for Generator (Issue #3709)
Tip revision: 5a17e84
hexagon_cpu_features.cpp
#include "HalideRuntime.h"
#include "cpu_features.h"

namespace Halide { namespace Runtime { namespace Internal {

WEAK CpuFeatures halide_get_cpu_features() {
    // Hexagon has no CPU-specific Features.
    return CpuFeatures();
}

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