https://github.com/halide/Halide
Raw File
Tip revision: 83dc4556f24b838baceaa07a10f888a09fb42b41 authored by Andrew Adams on 23 January 2019, 00:42:40 UTC
WIP investigation of weight-stationary cache behavior
Tip revision: 83dc455
alignment_64.cpp
#include "runtime_internal.h"

namespace Halide {
namespace Runtime {
namespace Internal {

WEAK __attribute__((always_inline)) int halide_malloc_alignment() {
    return 64;
}

}}}
back to top