https://github.com/halide/Halide
Raw File
Tip revision: c61ad72153be1c3c710ac7c8e2e2671f6f94a2f1 authored by Steven Johnson on 02 April 2024, 19:41:20 UTC
hack for testing
Tip revision: c61ad72
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 Internal
}  // namespace Runtime
}  // namespace Halide
back to top