Questions tagged [non-volatile]

50 questions
0
votes
1 answer

Decrease in Random read IOPs on NVME SSD if requests issued over small region

(TL;DR) On NVME SSDs (Intel p3600 as well as Avant), I am seeing decrease in the IOPS if I issue random reads over a small subset of the disk instead of the entire disk. While reading the same offset over and over, the IOPS are about 36-40K for 4k…
SandeepJ
  • 341
  • 4
  • 10
0
votes
2 answers

Non-VBA alternative to INDIRECT

I'm looking to find a non-VBA alternative to change the following volatile formula (due to INDIRECT() being used) to a non-volatile one: =(MAX(A1:INDIRECT("A"&D1))*MAX(B1:INDIRECT("B"&D1))) ...where the cell reference D1 above contains a formula…
gunny78
  • 11
  • 1
  • 2
0
votes
1 answer

Does volatile write of a variable avoids out of order writes?

Does volatile write assure that whatever writes (non-volatile / volatile writes) happens before it in one thread will be visible to other thread? Will the following given code always produce 90,80 as output? public class MyClass { private…
Mac
  • 1,711
  • 3
  • 12
  • 26
0
votes
1 answer

Modelling a Flash or Non-Volatile Memory Activity in SIMULINK model

I am trying to retrieve two 1-bit values (i.e. their previous values) after the system starts up OR write to it during the normal operation if cirumstances change. When I say "System starts up" I want to make it clear that this is a subsystem that…
ha9u63a7
  • 6,233
  • 16
  • 73
  • 108
0
votes
1 answer

struct Non_const, non_volatile static or external variable

My code compiles and runs but I still get a lint error message: --- Module: LunchMenu_main.c (C) } lunch[LUNCHES] = LunchMenu_main.c: warning 956: (Note -- Non const, non volatile static or external variable 'lunch') Although the use of…
1 2 3
4