I've recently been amazed, if not mind-blown, by how a very simple, "one-line" SAT solver on Interaction Nets can outperform brute-force by orders of magnitude by exploiting "superposed booleans" and optimal evaluation of λ-expressions. In this brief note, I'll provide some background for you to understand how this works, and then I'll present a simple code you can run in your own computer to observe and replicate this effect. Note this is a new observation, so I know little about how this algorithm behaves asymptotically, but I find it quite
Last major change: 10th March 2023
Intel added the Galois Field instruction set (GFNI) extensions to their Sunny Cove and Tremont cores. What’s particularly interesting is that GFNI is the only new SIMD extension that came with SSE and VEX/AVX encodings (in addition to EVEX/AVX512), to allow it to be supported on all future Intel cores, including those which don’t support AVX512 (such as the Atom line, as well as Celeron/Pentium branded “big” cores).
I suspect GFNI was aimed at accelerating SM4 encryption, however, one of the instructions can be used for many other purposes. The extension includes three instructions, but of particular interest here is the Affine Transformation (GF2P8AFFINEQB
), aka bit-matrix multiply, instruction.
There have been various articles which discuss out-of-band
#include <stdio.h> | |
#include <inttypes.h> | |
#include "pretty_print.h" | |
const char *opcodes[256] = { | |
"trap","fcmp","fun","feql","fadd","fix","fsub","fixu", /* 0x0# */ | |
"flot","flot","flotu","flotu","sflot","sflot","sflotu","sflotu", | |
"fmul","fcmpe","fune","feqle","fdiv","fsqrt","frem","fint", /* 0x1# */ | |
"mul","mul","mulu","mulu","div","div","divu","divu", |
#This program was created by Georg Brandl | |
#<[email protected]> (!) | |
#This program was raised into public domain by its owner. | |
#You can use it everywhere whithout permission, but please | |
#provide this information. | |
# | |
#How to use: | |
#lhs_highlighter.py file.lhs > file.tex | |
# | |
#The program converts Haskell snippets in literate sourcecode |