Latest Articles on Intel Technologies
OPENMP
subroutine do_1(a,b,n) real a(n,n), b(n,n) !$OMP PARALLEL SHARED(A,B,N) !$OMP DO SCHEDULE(DYNAMIC,1) PRIVATE(I,J) do i = 2, n do j = 1, i b(j,i) = ( a(j,i) + a(j,i-1) ) / 2.0 end do end do !$OMP END DO...
View ArticleNonlinear Least Squares Problem with Linear (Bound) Constraints
Hi,I noticed that the nonlinear solver uses central difference to calculate the Jacobi matrix, I was wondering is it possible to pass the analytical Jacobi elements to the code or not? I mean, in my...
View ArticleChanging code so that compiler directives are not needed
I have a file with parameters used for sizing arrays. Here is a part of it#ifdef WIZARD integer, parameter :: MS_ = 21 ! maximum number of bond series, must be odd!#else...
View ArticleIntel Compiler Recommended options
Hello everyone,I have created a resource for users to recommend compile options as follows (It is still before distribution).If there is a part that needs improvement or a part that I am missing,...
View ArticleStorage quota on the Intel® AI DevCloud ran out
I am preparing jobs to run thousands of graphs dataset. I am using FPGA nodes that include Arria 10 FPGAs with the Intel Xeon Gold 6128 CPU.The goal is to prepare many datapoints to use Machine...
View ArticleMemory leak when Training Gradient Boosted Trees model ?
Hello,I have a memory leak when running code that uses a Gradient Boosted Trees model and I cannot figured out where does it come.Here is a sample that reproduces my problem:int...
View ArticleBlack Belt Program ended apparently
Have any of the other Black Belts been advised of the end of the Black Belt program?I assume that this means that we will no longer have access to a Fortran license or future upgrades to the Intel...
View ArticleIntel MKL performance degrade a lot when I combine it with openMPI
I am using the intel math kernel library to write my algorithm and I set the number of threads to 16. My program can work well. However, when I tried to combine the MKL with MPI and run my program with...
View ArticleHow to know how many registers in a CPU?
Hi,I found a VNNI sample code provided by Intel.It declares a data type, __m512i, which is mapping to registers in CPU.As I know, the number of registers in a CPU is limited.Here is the information of...
View ArticleUnable to build vector-add sample
Hi,I am getting below error on building the vector-add sample as described in the getting started guide.u33211@login-1:~/oneapi-toolkit-development/DPC++Compiler/vector-add$ qsub -q build@v-qsvr-nda -l...
View ArticlePopular Articles on Intel Technologies
forrtl: severe (157): Program Exception - access violation
Langue Anglais I've added a main procedure to the source code of progam to run the software more and more. In Debug mode the program is excuted and I would be able to run the program. But when I change...
View ArticleIntel® SDK for OpenCL* Applications Samples Getting Started
Intel® SDK for OpenCL* Applications is a software developer environment for OpenCL* applications that includes access to OpenCL* runtime and a compiler for Intel platforms on both Intel® Processors and...
View Article