blob: 2cd3b8b27e12b39e3751900b63109dae12e8a523 [file] [edit]
/*
* Copyright 2024 Collabora Ltd.
* SPDX-License-Identifier: MIT
*/
#ifndef LIBPAN_H
#define LIBPAN_H
#ifndef __OPENCL_VERSION__
#ifndef PAN_ARCH
#error "PAN_ARCH needs to be defined for this header to work!"
#endif
/* We now include binding definition */
#if (PAN_ARCH == 4)
#include "libpan_v4.h"
#elif (PAN_ARCH == 5)
#include "libpan_v5.h"
#elif (PAN_ARCH == 6)
#include "libpan_v6.h"
#elif (PAN_ARCH == 7)
#include "libpan_v7.h"
#elif (PAN_ARCH == 9)
#include "libpan_v9.h"
#elif (PAN_ARCH == 10)
#include "libpan_v10.h"
#elif (PAN_ARCH == 11)
#include "libpan_v11.h"
#elif (PAN_ARCH == 12)
#include "libpan_v12.h"
#elif (PAN_ARCH == 13)
#include "libpan_v13.h"
#elif (PAN_ARCH == 14)
#include "libpan_v14.h"
#else
#error "Unsupported architecture for libpan"
#endif
#endif /* __OPENCL_VERSION__ */
#endif /* LIBPAN_H */