#ifndef CEED_SYCL_SHARED_HPP
#define CEED_SYCL_SHARED_HPP
#include <ceed/backend.h>
#include <ceed/ceed.h>
#include <sycl/sycl.hpp>
#include "../sycl/ceed-sycl-common.hpp"
#include "../sycl/ceed-sycl-compile.hpp"
typedef struct {
CeedInt interp_local_range[3];
CeedInt grad_local_range[3];
CeedInt weight_local_range[3];
SyclModule_t *sycl_module;
sycl::kernel *interp_kernel;
sycl::kernel *interp_transpose_kernel;
sycl::kernel *grad_kernel;
sycl::kernel *grad_transpose_kernel;
sycl::kernel *weight_kernel;
CeedScalar *d_interp_1d;
CeedScalar *d_grad_1d;
CeedScalar *d_collo_grad_1d; CeedScalar *d_q_weight_1d;
} CeedBasis_Sycl_shared;
CEED_INTERN int CeedBasisCreateTensorH1_Sycl_shared(CeedInt dim, CeedInt P_1d, CeedInt Q_1d, const CeedScalar *interp_1d, const CeedScalar *grad_1d,
const CeedScalar *q_ref_1d, const CeedScalar *q_weight_1d, CeedBasis basis);
#endif