#include <ceed.h>
#include <ceed/backend.h>
#include <ceed/jit-source/gallery/ceed-scale.h>
#include <string.h>
static int CeedQFunctionInit_Scale(Ceed ceed, const char *requested, CeedQFunction qf) {
const char *name = "Scale";
CeedCheck(!strcmp(name, requested), ceed, CEED_ERROR_UNSUPPORTED, "QFunction '%s' does not match requested name: %s", name, requested);
return CEED_ERROR_SUCCESS;
}
CEED_INTERN int CeedQFunctionRegister_Scale(void) { return CeedQFunctionRegister("Scale", Scale_loc, 1, Scale, CeedQFunctionInit_Scale); }