ncdu by Ciro Santilli 35 Updated +Created
Shor's algorithm by Ciro Santilli 35 Updated +Created
LLVM IR hello world by Ciro Santilli 35 Updated +Created
Example: llvm/hello.ll adapted from: llvm.org/docs/LangRef.html#module-structure but without double newline.
To execute it as mentioned at github.com/dfellis/llvm-hello-world we can either use their crazy assembly interpreter, tested on Ubuntu 22.10:
sudo apt install llvm-runtime
lli hello.ll
This seems to use puts from the C standard library.
Or we can Lower it to assembly of the local machine:
sudo apt install llvm
llc hello.ll
which produces:
hello.s
and then we can assemble link and run with gcc:
gcc -o hello.out hello.s -no-pie
./hello.out
or with clang:
clang -o hello.out hello.s -no-pie
./hello.out
hello.s uses the GNU GAS format, which clang is highly compatible with, so both should work in general.
Diamond Sutra by Ciro Santilli 35 Updated +Created
Windows Subsystem for Linux by Ciro Santilli 35 Updated +Created
Even added UI app support as of 2022: learn.microsoft.com/en-us/windows/wsl/tutorials/gui-apps That's awesome!
ncurses program by Ciro Santilli 35 Updated +Created
Neuron (software) by Ciro Santilli 35 Updated +Created
www.frontiersin.org/articles/10.3389/fninf.2019.00063/fullCoreNEURON: An Optimized Compute Engine for the NEURON Simulator (2019) Merged back into mainstream: github.com/BlueBrain/CoreNeuron
ColdQuanta by Ciro Santilli 35 Updated +Created
Not a quantum computing pure-play, they also do sensing.
Frontier (supercomputer) by Ciro Santilli 35 Updated +Created
Optoelectronics by Ciro Santilli 35 Updated +Created
Phasecraft by Ciro Santilli 35 Updated +Created
The co-founder's name, Toby Cubitt, is the mos awesome thing ever (Cubitt -> qubit). From UCL.
Optical component by Ciro Santilli 35 Updated +Created
Vinaya Pitaka by Ciro Santilli 35 Updated +Created
Sutta Piṭaka by Ciro Santilli 35 Updated +Created
Abhidhamma Pitaka by Ciro Santilli 35 Updated +Created
Fermions, bosons and anyons by Ciro Santilli 35 Updated +Created
PQShield by Ciro Santilli 35 Updated +Created
Intelligence is hierarchical by Ciro Santilli 35 Updated +Created
This point is beautifully argued in lots of different sources, and is clearly a pillar of AGI.
Perhaps one may argue that our deep learning layers do form some kind of hierarchy, e.g. this is very clear in certain models such as convolutional neural network. But many of those models cannot have arbitrarily deep hierarchies, which appears to be a fundamental aspect of intelligence.
How to Create a Mind:
The lists of steps in my mind are organized in hierarchies. I follow a routine procedure before going to sleep. The first step is to brush my teeth. But this action is in turn broken into a smaller series of steps, the first of which is to put toothpaste on the toothbrush. That step in turn is made up of yet smaller steps, such as finding the toothpaste, removing the cap, and so on. The step of finding the toothpaste also has steps, the first of which is to open the bathroom cabinet. That step in turn requires steps, the first of which is to grab the outside of the cabinet door. This nesting actually continues down to a very fine grain of movements, so that there are literally thousands of little actions constituting my nighttime routine. Although I may have difficulty remembering details of a walk I took just a few hours ago, I have no difficulty recalling all of these many steps in preparing for bed - so much so that I am able to think about other things while I go through these procedures. It is important to point out that this list is not stored as one long list of thousands of steps - rather, each of our routine procedures is remembered as an elaborate hierarchy of nested activities.
Human Compatible: TODO get exact quote. It was something along: life goal: save world from hunger. Subgoal: apply for some grant. Sub-sub-goal: eat, sleep, take shower. Sub-sub-sub-goal: move muscles to get me to table and open a can.

Unlisted articles are being shown, click here to show only listed articles.