Talk about selective powerdown of the CPU - eg Vector-Scalar Registers when they...
authorAlain D D Williams <addw@phcomp.co.uk>
Fri, 9 Apr 2021 18:26:21 +0000 (19:26 +0100)
committerAlain D D Williams <addw@phcomp.co.uk>
Fri, 9 Apr 2021 18:26:21 +0000 (19:26 +0100)
ISA/power-saving.mdwn [new file with mode: 0644]
future_feature_proposals.mdwn

diff --git a/ISA/power-saving.mdwn b/ISA/power-saving.mdwn
new file mode 100644 (file)
index 0000000..188603c
--- /dev/null
@@ -0,0 +1,60 @@
+Switching off parts of the CPU
+==============================
+
+This is a few notes as a result of a discussion with Luke in April 2021.
+
+Overview
+--------
+
+The basic ideas are:
+
+* Few programs will use the Vector Registers or the Vector-Scalar Registers
+
+* If these could be switched off there will be power saving
+
+* Power these back up when needed
+
+* There might be other parts of the CPU that could also be opportunistically switched off
+
+A bit more detail
+-----------------
+
+* How to switch on/off ? Is it done by the hardware or controlled by the operating system (OS) ?
+
+** It should be under OS control.
+The OS already does this sort of thing for: disks, Bluetooth, ...
+The OS is in best position to know
+
+*** how much idle time makes a component a candidate for switching off
+
+*** when not to switch off - eg imminent use expected
+
+*** user preferences
+
+* What happens when a program tries to use something switched off ?
+
+** a hardware exception ought to be raised, in much the same way as when
+a program trying to use floating point with hardware that does not have floating point.
+The OS could then switch on and restart the process
+
+
+Questions
+---------
+
+* How long will it take to start (power up) part of the CPU
+
+** I have looked hard to try to get a clue
+
+** the best that I can do is [ARM's big.LITTLE](https://community.arm.com/developer/ip-products/processors/b/processors-ip-blog/posts/ten-things-to-know-about-big-little)
+talks about 30-100 microseconds to do process migration and voltage/frequency changes
+
+** this is NOT the same as what is being talked about here, but is the best that I can do
+
+** Finding how long to, eg, switch on/off a Bluetooth device might give closer estimate as to
+how long things take
+
+* How much power would be saved ?
+
+* How to implement this ?
+
+ADDW
index edf6e37de114b8ca1b49d0d26461c13e39a38f70..109dd3a0b45c0bd9698e53f558e91e70a088023e 100644 (file)
@@ -14,3 +14,6 @@ As mentioned earlier - it may be time to consider adding AI support in the form
 ## List of Ethical concerns related to NLP Accelerators
  - item 1
  - item 2
+
+
+# Selective [powerdown of the CPU](ISA/power-saving.mdwn)