python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
icpc error in compiling over-aligned dynamic allocated variables
I am trying to compile a code in C++, that uses over-aligned variables. If I try to compile the following code (a MWE)
#include <new>
#include <iostream>
int main()
{
alignas(32) doub...
CaG
Votes: 0
Answers: 1
Faulty benchmark, puzzling assembly
Assembly novice here. I've written a benchmark to measure the floating-point performance of a machine in computing a transposed matrix-tensor product.
Given my machine with 32GiB RAM (bandwidth ~37GiB...
Nitin Malapally
Votes: 0
Answers: 1
What exactly is the -xhost flag?
I am having trouble understanding the purpose of the -xhost flag used with icc.
On the intel website, it states:
xHost, QxHost
Tells the compiler to generate instructions for the
highest instruction ...
5Pack
Votes: 0
Answers: 2
Mix and match GCC and Intel compilers: link OpenMP correctly
I have a scientific C++ application that is parallelized with OpenMP and compiled typically with GCC/8.2.0. The application further depends on gsl and fftw, the latter using OpenMP as well. The applic...
iridiumcc
Votes: 0
Answers: 0