https://github.com/halide/Halide
Raw File
Tip revision: 8a92c2626657f1f3c30389f3769a8a746c652fe9 authored by Andrew Adams on 08 September 2021, 00:40:04 UTC
Use a vectorized sum scan for the pyramid version too
Tip revision: 8a92c26
NetworkSize.h
#ifndef HALIDE_NETWORK_SIZE_H
#define HALIDE_NETWORK_SIZE_H

namespace Halide {
// The size of the best cost model network found. Needed by the cost
// model and also the cost model training script.
const int head1_channels = 8, head1_w = 40, head1_h = 7;
const int head2_channels = 24, head2_w = 39;
const int conv1_channels = 32;
}  // namespace Halide

#endif  // HALIDE_NETWORK_SIZE_H
back to top