Questions tagged [ram]

RAM (Random Access Memory) is a form of computer data storage. A random access device allows stored data to be accessed in very nearly the same amount of time for any storage location, so data can be accessed quickly in any random order.

RAM (Random Access Memory) is a form of computer data storage. A random access device allows stored data to be accessed in very nearly the same amount of time for any storage location, so data can be accessed quickly in any random order.

The two main forms of modern RAM are static RAM (SRAM) and dynamic RAM (DRAM). In static RAM, a bit of data is stored using the state of a flip-flop. This form of RAM is more expensive to produce, but is generally faster and requires less power than DRAM and, in modern computers, is often used as cache memory for the CPU.

Both static and dynamic RAM are considered volatile, as their state is lost or reset when power is removed from the system. By contrast, Read-only memory (ROM) stores data by permanently enabling or disabling selected transistors, such that the memory cannot be altered.

2294 questions
0
votes
2 answers

RAM depleted too fast

So I'm trying to use a modified version of this code (https://github.com/snf/keras-fractalnet) that uses Dense layers 512, 128, 32, 8 instead of the convolution layers. The original I believe uses (63,3,3), (128,3,3),…
0
votes
1 answer

Memory used by numpy arrays larger than RAM?

I have read very large tdms files containing sensor data into lists of numpy arrays. The structure is the following: The data from several files is stored in instances of an object called file_data. The object has properties for each sensor type…
Carl
  • 7
  • 2
0
votes
0 answers

MariaDB 10.1 using too much RAM on Debian 9.12

I am administrating a server with MariaDB and it often uses a lot of RAM - often so much that it crashes because it can't allocate more RAM, and even when it doesn't it can be pretty slow because it swaps. Even when it is running smoothly, I can see…
Mutre
  • 131
  • 2
0
votes
2 answers

Error occurred during initialization of VM, Could not reserve enough space for object heap

I tried to make a Minecraft Server, using the suggestions I've seen people telling others to use the Paper API. So I got all the files, and I allocated 512 MB of ram to it (using -Xmx512M), and it runs completely fine! But it bumps into the limit of…
FTWGaming
  • 29
  • 2
  • 7
0
votes
1 answer

Nand flash chip ; I/O width of x8 and x16 bits?

Can anyone explain me what is the difference between using a nand flash chip of x8 I/O width with x16 i/O width.
Napster92
  • 11
  • 2
0
votes
1 answer

Apache2 with MySQL and Django on 256MB RAM VDS

I have a 256MB RAM VDS with Debian Lenny, Apache2, MySQL, mod_php (and some PHP websites). In this configuration VDS have about 35MB RAM left. So, I installed mod_wsgi (in daemon mode) and some very simple Django site (just for testing, it's one…
yeputons
  • 8,478
  • 34
  • 67
0
votes
1 answer

Removing App from 'Overview' force stops it [with/without root]

I am faced with a difficult problem. The test device that i need to execute the objective on: Device: Micromax Bharat 5 Plus (2018 model) Android Version: 7.0 I have an Android app which critically relies on push notifications. The device I'm using…
0
votes
1 answer

python break process if memory consumption is to high

I am using a module and sometimes it crashes, because of memory consumption. It is terminated by SIGKILL 9 and the script is interrupted. However I cannot access the loop in which the memory consumption happens. This is how it looks now: import…
Leo
  • 222
  • 1
  • 4
  • 15
0
votes
0 answers

why my program takes 100% of my RAM on stress testing (72 GB)

I have a solution based on .net core 2.0 and it reaches 100% RAM (72 GB) in an hour on stress testing. I need to know if there is a any work around to force garbage collector without changing the code? Any environment level changes/third party…
Muqadar Ali
  • 87
  • 11
0
votes
3 answers

Embedded Linux emulation with QEMU (on LPC313X by NXP)

I'm starting to work with Embedded Linux and I've got a LPC313x based board (Embedded Artists). I've built apex and kernel with ELDK (as suggested here: http://www.lpclinux.com/LPC313x/LPC313xGettingstartedELDK). The kernel is built correctly…
stef
  • 737
  • 4
  • 13
  • 31
0
votes
0 answers

How to stop Python Program from continually increasing memory usage?

I created a little program to measure my 4g data consumption and it's working pretty well... Except for one part. After running for a whole day, I heard my computer making sounds I've never heard so when I went to my Task Manager and was…
0
votes
1 answer

Allocate more RAM to executable

I've made a program which process a lot of data, and it takes forever at runtime, but looking in Task Manager I found out that the executable only uses a small part of my cpu and my RAM... How can I tell my IDE to allocate more resources (as much as…
user12903232
0
votes
1 answer

Why a python process in linux shuttdown my Pc and not in Windows?

PC features: OS: Debian 10 x64 Processor: AMD Ryzen 7 2700x motherboard: Rogstrix b450-f Ram: 16gb GPU: ZotaGaming 2070 super. I try to run a program,ANFIS whit data set IRIS. but from one moment to another, the processor stops or something…
0
votes
1 answer

256 possible values in a 8 bits

I am confused when I read the details section that says 1 byte which is 8 bits gives us a potential of 2^8 or 256 possible values. (https://en.wikipedia.org/wiki/8-bit_computing) If i am doing the math correctly 2^0 = 1 2^1 = 2 2^2 = 4 2^3 = 8 2^4…
Dinero
  • 1,070
  • 2
  • 19
  • 44
0
votes
1 answer

C++: Global Instance of Class vs Namespace: RAM Usage?

I'm working in a very RAM- and progmem- constrained space. I have a small collection of related variables and functions that I'd like to group together in some meaningful way. This collection will be visible to the rest of the program. My first…
Bo Thompson
  • 359
  • 1
  • 12