Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
0 replies
92 views

I'm trying to deploy a PyTorch model to an edge device (Jetson Orin Nano). Deploying the PyTorch model directly does not satisfy the requirements posed by the clients, so I'm looking into optimize the ...
Trung's user avatar
  • 1
Tooling
0 votes
2 replies
126 views

I'm building a commercial desktop application in C# and I need to implement license verification that prevents key sharing between users. What I'm trying to achieve: Bind each license key to a ...
Luxivantee's user avatar
1 vote
1 answer
95 views

If I have the following code, how would I need to implement the ResolveXIdToXName methods? So far I havent been able to get my hands on a easy to use library or API to quickly send this to and resolve ...
SMSTJ's user avatar
  • 722
-2 votes
1 answer
106 views

First the context: I am doing some reworking of a C# tool I have written a short while ago, that is supposed to extract hardware data from the PC and then send it off to an API (only for Windows PCs). ...
SMSTJ's user avatar
  • 722
Advice
0 votes
16 replies
6k views

I'm studying System Architectures, in particular the integrated circuits. The last circuit is the flip-flop D. If the clock is 1 either 0 the AND gives in output 0. I have read that works with the ...
vinc's user avatar
  • 25
-4 votes
1 answer
118 views

I was making a .bin file and I ran into a issue, I don't know how to run it! I just wanted to make a basic HLT function file to test it out. Here's the contents: ...
oriononmar's user avatar
0 votes
0 answers
71 views

I am facing a strange issue on FPGA EP4CE6E22C8N (Cyclone IV), i use quartus II 13.0 and signaltap to debug I have three input signals running in parallel, using the same HDL code and the same timing ...
user22259218's user avatar
2 votes
0 answers
143 views

I'm trying to get live video from DJI Goggles3. Most likely transmission performs over this interface Interface Descriptor: bLength 9 bDescriptorType 4 ...
Eugene Litvin's user avatar
Tooling
1 vote
4 replies
187 views

I’m working on a C++ backend tool that performs system diagnostics for various hardware components on Linux. So far, I’ve implemented tests for: Memory — using memtester CPU — using stress-based ...
TI-84-plus's user avatar
Advice
0 votes
2 replies
119 views

I'm trying to build my own handheld games console similar to a Game Boy. Currently for the POC I’m using the Arduino Uno, separate SD card reader module and 2.4 inch TFT Display. I want to put the ...
user15155666's user avatar
Advice
2 votes
2 replies
228 views

I was curious and wondering how many registers are on an x64 processor. I know there are 16 general purpose registers available to the user, but there are supposedly general purpose alias registers ...
misInformationSpreader's user avatar
0 votes
1 answer
106 views

Let's say I have a CPU with 1 core and 2 hardware threads (for example, with Intel Hyper-Threading or AMD SMT). From what I understand, that means the core can run two software threads "at once&...
ab55's user avatar
  • 48
0 votes
1 answer
80 views

This question stems from a technical interview where I was asking candidate about multithreading, and the differences between "true multithreading" via multiple hardware cores and/or ...
Dominik Kaszewski's user avatar
2 votes
1 answer
235 views

For the same memory address, if I use atomic operations of different widths to operate on it (assuming the memory is aligned), for example(Assuming the hardware supports 128 bit atomic operations): #...
untitled's user avatar
  • 587
1 vote
0 answers
162 views

I am trying to use this DMA driver to transfer memory from a streaming device to SDRAM. This is my design in Qsys/Platform designer: The design streams a predictable pattern of 6x6x6x6x to SDRAM. The ...
K606's user avatar
  • 23
0 votes
0 answers
135 views

I am working on a Pixel 8 device running CalyxOS. uname -a: Linux localhost 5.15.137-android14-11-gbc062a78e195-ab12057991 #1 SMP PREEMPT Mon Jul 8 12:34:46 UTC 2024 aarch64 Toybox. The device ...
Gal Kaptsenel's user avatar
2 votes
0 answers
161 views

I’m currently having a major problem with the Esp32, and using a mouse pointer in regards to getting the Esp32 to display a cursor upon my VGA or Video Graphics Array screen, I have successfully ...
KronosHedronos2077's user avatar
1 vote
2 answers
152 views

Okay my question is probably dumb. But I cant find any answers that correct me. I learned that in DDR4 -lets say the stick has 8 chips- each chip parallelly contributes 8 bit to the 64 bit bus width. ...
Rishi's user avatar
  • 51
1 vote
1 answer
103 views

I have the following code: logic [3:0] a = 4'1010; logic [3:0] b = 4'b0111; logic [3:0] f = 4'b1000; // ~b logic [4:0] c; logic [4:0] d; logic [4:0] e; assign c = a + b; // this gives a ...
Paulo's user avatar
  • 135
1 vote
1 answer
322 views

I am developing flutter app and then the flame requires me to upgrade my flutter version and then after that everything seems smooth. After changing parallax image, my pc crashes and I already updated ...
Godfrey Javier's user avatar
0 votes
1 answer
306 views

I am using STM32F469BIT6 on a custom PCB with IS42S16400J-7TLI external 8Mb SDRAM. On my previous board, I was using STM32F429ZIT6 with the same SDRAM (these MCU and SDRAM were selected because they ...
cserp's user avatar
  • 74
0 votes
0 answers
97 views

I am developing a project with STM32 using the STM32G473CET6 chip and working on a CAN bus system. In this project, the STM32 sends messages to the bus, processes the received messages, and responds ...
MKT12's user avatar
  • 1
4 votes
1 answer
344 views

I am writing some DSP code that performs wavefolding distortion on an input signal. This code applies amplitude gain (multiplies input by a gain value) then wave folds the input such that the final ...
Emmett Palaima's user avatar
5 votes
1 answer
188 views

8 and 16 bit registers are usually avoided in modern x86 assembly because they're specified to leave the upper 56/48 bits unchanged, which creates performance issues due to partial register stalls, ...
user avatar
1 vote
0 answers
64 views

In xv6 memlayout.h: line 20: // qemu puts UART registers here in physical memory. #define UART0 0x10000000L #define UART0_IRQ 10 // virtio mmio interface #define VIRTIO0 0x10001000 #define ...
Yutong Song's user avatar
0 votes
0 answers
58 views

I ran a benchmark on my core i5 (Rapoter Lake) for _mm256_shuffle_epi8 and _mm256_maddubs_epi16, and they have nearly the same Throughput just like the AVX documentation said. In fact, for now there ...
namea hang's user avatar
0 votes
1 answer
455 views

I am trying to implement a bank swap mechanism for STM32L471RET6. my Code Doesn't seem to have errors for setting and resetting Option bytes but Nothing Happens when Calling the bank Swap Functions. ...
Mehdi Sadeghi's user avatar
0 votes
2 answers
99 views

In my springboot project, I use com.fazecast.jSerialComm to scan serial port. It successfully to scan my hardware device in COM4. However, It fail to scan this com port in docker , even I add device /...
AlexMoshi's user avatar
  • 329
1 vote
0 answers
78 views

A simple CNN model was trained on Apple CPU and on Apple GPU, and both model performances were evaluated on the test data set; the one trained on Apple CPU had an accuracy of 98%, while the one ...
user23360353's user avatar
0 votes
0 answers
154 views

In C++ a standard library function is std::hardware_concurrency which as stated in the documentation: Returns the number of hardware thread contexts. Note that this does not need to match the actual ...
Zebrafish's user avatar
  • 16.9k
5 votes
1 answer
408 views

For an assignment, I've been trying to work on a project to inspect and retrieve system information on Linux either in pure C, or inline ASM. A bit of a problem I'm having now is actually retrieving ...
Abb3v's user avatar
  • 76
0 votes
1 answer
75 views

As far as I know, we can read only data in video memory. So when we want to read data on process memory, we should copy the data to video memory by using Render Target or SSBO so the shader can read. ...
user27790086's user avatar
1 vote
1 answer
177 views

This is historic question. Intel datasheet says that valid range from 0 to 0.25 *PI. For Intel 287XL argument absolute value must be lower then 2^63 (as in 80387 and above). I have system with ...
Andrei Khokhlov's user avatar
1 vote
0 answers
894 views

I am trying to get my computer (fedora) to recognize my Raspberry Pi Pico. The Pico works — it is capable of running simple programs that can blink the LED / output digital signals, but I can't get ...
villagercomrade's user avatar
1 vote
1 answer
134 views

I'm an undergraduate student studying a section in our computer architecture textbook that introduces a hardware-level parallel multiplication algorithm. As depicted in the figure, the algorithm ...
Memento mori.'s user avatar
0 votes
0 answers
122 views

trying to program a 4x4 keypad to display hex value on the board I have. any time I output to the board every, it defaults to 0xFF. So far ive tried addling longer delays between key pressed and ...
dylzad747's user avatar
1 vote
1 answer
115 views

Hi i have a problem with my device. I used arduino uno, old keypad, SD card reader, and low quality speaker. Every singel pice works perfectly but all together it doesn't work like i want to. Keypad ...
pawko774's user avatar
2 votes
0 answers
145 views

I have an STM3F4DISC1 board that seems like it does connect to my Windows 10 PC (shows up in the system tray as an ejectible USB device). The device gets powered on and starts running the factory ...
Skegg's user avatar
  • 900
1 vote
0 answers
57 views

I am working with RISC-V instruction formats, and I am considering making some adjustments to the bit positions in the Branch (B-type) and Jump (J-type) instruction formats. Specifically: Branch (B-...
Glofri Tinplo's user avatar
1 vote
0 answers
40 views

I'm attempting to open a large CSV file with the SmarterCSV rails gem but on my M3 Pro with 32 Gigs Ram it just hangs and fails to open the file (even if using chunks) when running: SmarterCSV.process(...
bkunzi01's user avatar
  • 4,581
1 vote
0 answers
134 views

I am working on a project where I need to sign a JSON object using a Digital Signature Certificate (DSC) stored on a USB token. I understand that the private key is not directly extractable from the ...
Anil Unni's user avatar
0 votes
1 answer
494 views

I´m stuck with extracting hardware information of my monitor manufacturer ID in this format: xxxxx_xxxxxxx Basically, format which provides Linux command hwinfo --monitor as "vendor" ...
Zdeneik's user avatar
-1 votes
1 answer
69 views

Hardware devices expose their registers to CPU side using MMIO. And there are so many types of registers (written in some hardware manuals/device drivers) which are used for different usages. How do ...
b3a1e's user avatar
  • 51
1 vote
2 answers
82 views

I am trying to set up a lab for students to investigate capacitance via measuring voltage drop over a capacitor using a microbit. I have a microbit hooked up to a breadboard with a capacitor hooked up ...
Rattus's user avatar
  • 105
1 vote
2 answers
466 views

I have a Python Flask API server that crashes after a few seconds when running on my new Windows machine (a Dell work station). There is usually no error message, but sometimes there are errors ...
Randy Lam's user avatar
  • 689
0 votes
0 answers
80 views

If I read and write a same register in one cycle, how to realize the Read After Write on hardware? Bypass will work but I'm wondering how to make it by trigger edge? Will it be ok if I write at the ...
user24917762's user avatar
1 vote
0 answers
142 views

I have a bunch of steel series gear: mouse, pad, speakers, keyboard. All have RGB lights. When I go to sleep I have to manually turn off these lights. I would like to automate this process with a ...
kindasorta's user avatar
1 vote
1 answer
1k views

I am working on a flask application that runs on some embedded hardware inside a Docker container and I am trying to store persistent data in a named volume that exists on my host machine during the ...
Dave's user avatar
  • 13
1 vote
0 answers
179 views

I am trying to develop my own telemetry board which would use an accelerometer, GPS module, display etc. , I am currently doing the schematics for my board. I would like to programm the MCU just using ...
Kristián Nemček's user avatar
0 votes
0 answers
68 views

I'm trying to communicate with IKA hardware EUROSTAR 60. I can read data with no problem. But when I try to output a value(adjusting), my code fails and there is no error message whatsoever. The ...
AEO's user avatar
  • 1

1
2 3 4 5
60