(In the VAX 780 article) Digital used the performance of the VAX-11/780 as a reference point for describing the performance of subsequent VAX models. The performance of the VAX-11/780 became known as 1 VAX Unit of Performance (or 1.0 VUPs).[8] Other VAX models were rated as a multiple of the VAX-11/780's performance, for example, a 2.0 VUPs VAX would be twice as fast as the VAX-11/780.(In the VAX article) For a while the VAX-11/780 was used as a standard in CPU benchmarks. It was initially described as a one-MIPS machine, because its performance was equivalent to an IBM System/360 that ran at one MIPS, and the System/360 implementations had previously been de facto performance standards. The actual number of instructions executed in 1 second was about 500,000, which led to complaints of marketing exaggeration. The result was the definition of a "VAX MIPS," the speed of a VAX-11/780; a computer performing at 27 VAX MIPS would run the same program roughly 27 times faster than the VAX-11/780.
[8] "VAX CPU Model Summary". vaxmacro.de. Retrieved 2020-12-27.
define f(n) { if (n < 2) return(1) return(n * f(n - 1)) }