swh:1:snp:2c68c8bd649bf1bd2cf3bf7bd4f98d247b82b5dc
Raw File
Tip revision: 1833a0bcff093c9aca01fa6a087b02115bb9b8b6 authored by Andrew Adams on 16 October 2022, 22:05:51 UTC
Make training binary robust to bad pipeline ids
Tip revision: 1833a0b
halide_image.h
#ifndef HALIDE_TOOLS_IMAGE_H
#define HALIDE_TOOLS_IMAGE_H

/** \file
 *
 * This allows code that relied on halide_image.h and
 * Halide::Tools::Image to continue to work with newer versions of
 * Halide where HalideBuffer.h and Halide::Buffer are the way to work
 * with data.
 *
 * Besides mapping Halide::Tools::Image to Halide::Buffer, it defines
 * USING_HALIDE_BUFFER to allow code to conditionally compile for one
 * or the other.
 *
 * It is intended as a stop-gap measure until the code can be updated.
 */

#include "HalideBuffer.h"

namespace Halide {
namespace Tools {

#define USING_HALIDE_BUFFER

template<typename T>
using Image = Buffer<T>;

}  // namespace Tools
}  // namespace Halide

#endif  // #ifndef HALIDE_TOOLS_IMAGE_H
back to top