Click here to Skip to main content
15,909,039 members
Everything / Intel64

Intel64

Intel64

Great Reads

by paul1167
Enumerate System Features

Latest Articles

by paul1167
Enumerate System Features

All Articles

Sort by Score

Intel64 

26 Aug 2021 by OriginalGriff
It's not just the CPU you need to check (in fact that's about the last thing!) You need to look at the motherboard - these are normally the limiting factor for RAM fitment, and all the Acer machines I've ever looked at were shipped with the max...
26 Aug 2021 by Dave Kreskowiak
You can find that at Supported Memory Type for Intel® Core™ Laptop Processors[^] But, it's not the CPU that's going to limit the amount of RAM you can use, it's the motherboard.
17 Oct 2023 by Dave Kreskowiak
Your best source of support on a library is going to be a forum dedicated to that library, which can be found at Intel® oneAPI Data Parallel C++ - Intel Community[^].
3 Mar 2014 by Member 9964804
I have a loop in my Intel Vector assembly code. In the loop, the loop counter is used to read from and write to 4 consecutive memory locations. For example, vmovdqu [r9 + rdx + 64], y0 vmovdqu [r9 + rdx + 96], y1where is my loop counter. During profiling, I notice that using "r10d"...
3 Mar 2014 by Krunal Rohit
Well, You may find that info in the documentation called Instruction Manual provided by manufacturer of the processor. Every processor manufacturer provides this documentation, but yeah it is not free. You have to pay for that. :)-KR
3 Mar 2014 by Member 9964804
Hi KR , I have the instruction manual, but it does not give me any pointers. The closest I came to a solution is here: http://stackoverflow.com/questions/17896714/why-would-introducing-useless-mov-instructions-speed-up-a-tight-loop-in-x86-64-a[^]
1 Feb 2017 by theRealGreenz1
I am running the following code on my Windows10 machine with API version 1.19 of Intel Media SDK.#include#include"mfxvideo++.h"void main() { printf("this is a new program using intel media sdk"); mfxSession SWsess; mfxVersion SWver = {0,1}, ver; mfxStatus...
1 Feb 2017 by Daniel Pfeffer
LNK4098 means that there is a mismatch between versions of LIBC expected by various components of your program. It typically occurs when one static library is compiled against the static LIBC, and another library (or the main program) is compiled against the DLL version.In order to fix this,...
22 Jul 2018 by KeyurKelkar
Hello, I have struggled for the past 2 weeks to make the code contained in the following codeproject.com article to work in the Windows 10 environment: Lightning-Fast R Machine Learning Algorithms[^] It seems to me that I am not correctly setting up behind the scenes (e.g. choice of compiler,...
22 Jul 2018 by Jochen Arndt
This might not be the final solution but should fix some errors and prevent from having other (future) problems. You are using the Intel compiler but include the MS Visual C++ header files. Specifying the Intel include file directory ($(ICInstallDir)\compiler\include\) as very first path in the...
26 Aug 2021 by Slow Eddie
How much Ram will an Intel Core I5 10th generation support? I want to increase the ram in my Acer Aspire from 12 GB to 16GB or 32GB. do you have any idea? What I have tried: Going to the ACER support website, but it is useless.
24 Oct 2023 by Member 11391148
I am using the oneapi library and DPC++ of Intel. I want to process same frame with oneapi library and GPU. I try to use the function ippiYUV422ToRGB_8u_C2C3R inside of #pragma omp taget. I try to run that function on gpu using pragma. But that...