CVXQUAD is not a solver. it is an add-on to CVX which formulates SDP (LMI) constraints to include in a CVX model, and employ a semidefinite representable apprcximation to the matrix logarithm in order to handle quantum entropy, quantum relative entropy, trace of matrix logarithm, and some other functions listed at
https://github.com/hfawzi/cvxquad .
A "YALMIPQUAD" could be developed to implement similar capability in YALMIP as CVXQUAD does in CVX. The CVXQUAD developer has considered, but not yet completed, such an undertaking. I think that could be designed for YALMIP to even allow incorporation of SDP (LMI) constraints to model those functions, even in the context of an overall non-convex problem(that would be impossible to do in CVX).
Per table 1 of
https://arxiv.org/pdf/1705.00812.pdf , the implementation by CVXQUAD of quantum relative entropy involves 2n^2 by 2n^2 SDPs, when the underlying problem has n variables (the other functions are no worse than 2n by 2n SDPs). So it doesn't scale well to even medium size problems. If someone could find a barrier function for the quantum relative entropy cone, a much better solution method could be developed, and probably implemented in a solver such as Mosek.
My solver is not available anywhere except on my PC, and is not user friendly right now, even for me. Unless it is lucky and the problem is very easy, it is going to formulate and solve a large number of SDPs (if there are SDP constraints) in the course of solving a single SDP-constrained blackbox optimization problem.
My solver can even handle nonlinear SDPs, although it is limited now by how good the nonlinear SDP solvers (e.g., PENLAB, or better yet, PENBMI and PENNON) are. Id the SDPs are linear, and there are no non-Mosek-representable constraints, my solver can call Mosek or other linear SDP solver as subproblem solver (and do so via YALMIP). Whether linear or nonlinear SDP, my solver terminates based on the first order optimality criteria for whatever combination of SDP and non-SDP constraints there are, It can also evaluate 2nd order optimalitty criteria for non-SDP problems. And this is all true, even if the objective function is evaluated by stochastic (Monte Carlo) simulation, and therefore the objective function and gradient are noisy.