[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: [eigen] aligned question
- From: Gabriel <gnuetzi@xxxxxxxxx>
- Date: Wed, 15 Jul 2015 11:00:07 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=3EhmB0R4nv85a+YBT6zkNFE6PuZVoF7wfDe4EmE0yTw=; b=LNV/hguK64qarvYNMYW/rBNLI+LkzRJqt27n3Yk2a4QclqCjhhSy3+hMt4+HOnB0rE 2D+vbFH/xBWDXQcziQ57hUYXAMcb3kbcMvvpt4TgKC7yplY3eQK96ZIxLHQiWO4XA9aN qZ3vmARZ/qAe2Ftx6gTHwijymQPp+KhCU/+nobPU2x1lo5ynouBHrl3wUEzbd3YesGsE s0w5EanwXowfjUAEDUwBorANFpS9bvU3c5q0rIivei5RST4Hzh5fG2sBK7l759TD7YCW viss06S4zGoyxTfxxl3RQ47XxmabbvUxX4C6rnBk6BMwVgL1Vf7GMZ1NH4uhRnNTLi0l nlFg==
If I have
class A{
EIGEN_MAKE_ALIGNED_NEW
Eigen::Vector4f a;
}
and I instantiate this as
A * arr = new A[100];
is there any alignment issue or does EIGEN_MAKE_ALIGNED_NEW take care of
this :-)?
Thanks a lot?