My problem looks like this:
$$\min x^TAx$$ subject to: $$\|x\|_1 = 1$$
matrix $A$ is $n \times n $ positive semi-definite, $x$ is $n$ dimensional vector.
Constraint is convex because every norm is. Function should also be convex because it is quadratic in $x$, but when I use 'cvxpy' package for convex optimization it tells me that problem is not convex. Is this problem convex or not? If it is not convex what could be possible ways to relax this problem to be convex?
Edit It seems like the norm constraint is not convex. Question can be closed