Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
0 answers
35 views

I have a Dell laptop with Intel Iris Xe graphics (Raptor Lake / RPL-U) running **Ubuntu 24.04** (kernel 6.8.0-100-generic, Mesa 25.2.8). My external monitor is a **2560×1080** (21:9 ultrawide). The ...
Renan Weiber dos santos's user avatar
2 votes
0 answers
67 views

Assume this code in x86_64 assembly: section .data msg db "Hello, world!" section .text global _start _start: ;; system call 1 is sys_write mov rax, 1 ...
Bram Fran's user avatar
  • 133
0 votes
0 answers
65 views

I have this bootloader I made a while ago and I would like it to be in nasm: .intel_syntax noprefix .code16 .equ STACK_TOP, 0x7C00 .equ SELF_LOAD, 0x7C00 .equ ELF_HDR_LOAD, 0x7E00 .equ SECT_SIZE, ...
Connor Thomson's user avatar
6 votes
1 answer
182 views

My code is ... fragment1 // compares several regions in D1$ to D1$/D3$ __atomic_fetch_add(&lock,-1,__ATOMIC_ACQ_REL); // stmt A fragment2 // moves several regions from D1$/D3$ to D1$ ...
Henry Rich's user avatar
1 vote
1 answer
126 views

I wonder if Intel (and Intel compatible) CPUs have an instruction (for diagnostic/debugging purposes) which, for a given linear address, returns the result of paging translation (i.e. the ...
Ruslan's user avatar
  • 144
1 vote
0 answers
86 views

I am reading a paragraph about the tbb::parallel_scan algorithm from the book Intel Threading Building Blocks, and I understood what the operation does serially, but I am not understanding what are ...
luczzz's user avatar
  • 446
Best practices
1 vote
2 replies
123 views

My assembly program reads characters in a text file by loading them one by one in register 'al'. However I sometime need to use rax fully, and I think this causes a partial register stall. Now I think ...
Kun Xiang's user avatar
0 votes
1 answer
92 views

I am trying to implement Cache allocation Technology`s impact with my CPU. However, when I use either lscpu to see whether my CPU supports, or cpuid -l 0x10, output is false. How is this possible? How ...
Ali Hosseini's user avatar
7 votes
1 answer
235 views

I'm experimenting with the IMUL r64, r64 instruction on an Intel Xeon E5-1620 v3 (Haswell architecture, base clock 3.5 GHz, turbo boost up to 3.6 GHz, Hyper Threading is enabled). My test loop is ...
Andrey Dmitriev's user avatar
3 votes
1 answer
123 views

I have a JavaFX desktop application that started having rendering issues after updating the Intel Iris Xe graphics driver. On Java 11 + JavaFX (Zulu distribution): openjdk version "11.0.25" ...
Guilherme Almeida's user avatar
2 votes
0 answers
78 views

A while ago, I was training a deep learning model on a computer without an NVIDIA GPU but with an Intel GPU. I only used the CPU for training, which was painfully slow. It suddenly occurred to me: can ...
Famhap's user avatar
  • 21
3 votes
1 answer
161 views

I am trying to measure memory bus related performance of a simple test program on an Intel N150 (Twin Lake, which has four Gracemont cores, like Alder Lake E-cores). PMU counters from perf stat don't ...
xealits's user avatar
  • 4,830
0 votes
1 answer
140 views

My understanding is that PERF_COUNT_HW_REF_CPU_CYCLES should map to some counter that counts at a constant rate, as opposed to PERF_COUNT_HW_CPU_CYCLES which is affected by frequency scaling. I'd ...
Joseph Garvin's user avatar
4 votes
0 answers
72 views

On an Intel i7-13620H based computer with Windows 11, a 10-thread, compute-intensive application written in C# application uses only 4 of 10 CPU cores, seems to use only the “efficiency” (and not “...
Boulder Keith's user avatar
-1 votes
1 answer
192 views

I am using the basic threadpool found at https://codereview.stackexchange.com/questions/288042/c-implementation-of-a-concurrent-queue-and-of-a-thread-pool/288044?noredirect=1#comment593398_288044 to ...
Olórin's user avatar
  • 3,920

15 30 50 per page
1
2 3 4 5
239