I would guess that compiling with openMP would probably give the largest boost to performance. It's easy to do, just download the source of SCS from github then run:
cd scs/python
python setup.py install --scs --openmp
(if there is a build directory in the python dir then delete it, to force it to recompile).
There are two other changes you can make that would likely improve performance:
1) If you have a GPU then you can run scs on it, to do this recompile SCS with gpu support (just append ---gpu to the install args listed above), and make your call to cvxpy something like Problem.solve('SCS', gpu=True). You have to have the cuda library installed on your system.
2) You can tweak the scale parameter (a heuristic data re-balancing parameter), for exponential cones it turns out to work a little better with larger scales, so something like Problem.solve('SCS', scale = 5)