// Describes how to set the sizes of all the buffers static void SetSizes(Arguments<T> &args, Queue&) { args.a_size = GetSizeA(args); // im args.b_size = GetSizeB(args); // col }
// Describes how to set the sizes of all the buffers static void SetSizes(Arguments<T> &args) { args.a_size = GetSizeA(args); args.x_size = GetSizeX(args); args.y_size = GetSizeY(args); }
// Describes how to set the sizes of all the buffers static void SetSizes(Arguments<T> &args) { args.a_size = GetSizeA(args); args.b_size = GetSizeB(args); }