Skip to main content

Predictions for 2022+

Hello!

I wanted to record some thoughts I had on predictions for ths coming year, if only to provide a record to check against in the future.

Hope you enjoy and feel free to drop a comment with your thoughts!

#1. Intel announces a new ISA to compete with ARM

>30% - Not particularly likely in 2022 but more likely in 2023 and beyond
Apple is selling a TON of Macs with M1 processors and these processors are very fast. TheRegister writes
Arm's market share in PC chips was about eight per cent during Q3 this year, climbing steadily from seven per cent in Q2, and up from only two per cent in Q3 2020, before Arm-compatible M1 Macs went on sale.

Apple's ARM based processors use an ISA (Instruction Set Architecture) that is newer and better designed than the x86 one used by Intel and AMD. While switching ISAs is a huge undertaking, users of the x86 ISA have higher power consumption and larger silicon area to perform the same operations.

#2. Recognition for SAR-CoV-2 / COVID natural immunity

~50% - Somewhat likely

There are a number of studies and data sets that show clearly that past SARS-CoV-2 infection results in an immune response that reduces the chance of future infection and dramatically decreases the chance of complications from future infection. Ironically this mechanism is exactly the one being used by COVID vaccines (and vaccines in general).

However, in spite of what you might have learned in school, and many thousands of research papers on the human immune system, and the rational for having a vaccine in the first place, there is reluctance to come right out and say it.

Let's hope reason and data will prevail and in 2022 we'll see recognition of this biological fact both in regulations and in language used by what we hope are trusted sources like the CDC.

#3. Tesla releases FSD (full-self driving) across its fleet

>50% - Even considering Elon time, a 2022 release is likely

FSD has come a long way in 2021. Along with upgrades to software and the neural network that runs in the cars, there have been extensive improvements to how Tesla is training and has designed their ML networks. We've seen FSD beta being released for a number of owners, based upon their driving score as calculated by Tesla.

A self driving car is a huge challenge. I'm optimistic that in 2022 we'll see FSD features like door-to-door driving, and smooth human like behavior, become the norm and released across the Tesla fleet that has the hardware support to handle it.

Comments

Popular posts from this blog

Debugging an imprecise bus access fault on a Cortex-M3

This information may apply to other cortex series processors but is written from practical experience with the Cortex-M3. Imprecise bus access faults are ambiguous, as noted by the term "imprecise". Compared to precise bus errors, imprecise errors are much trickier to debug and especially so without a deep understanding of arm processors and assembly language. Imprecise and precise flags are found in the BusFault status register, a byte in the CFSR (Configurable Fault Status Register). BusFault status register bits The definition for imprecise and precise bits is: [2] IMPRECISERR Imprecise data bus error: 0 = no imprecise data bus error 1 = a data bus error has occurred, but the return address in the stack frame is not related to the instruction that caused the error. When the processor sets this bit to 1, it does not write a fault address to the BFAR. This is an asynchronous fault. Therefore, if it is detected when the priority of the current pr...

Travelling on Spirit airlines out of Boston Logan airport? Here are some tips.

I attended CES 2017 in Las Vegas. Booking the trip late I ended up on Spirit airlines. It was both non-stop, making it six hours to Las Vegas from Boston, and affordable, less than $300 for a one way trip compared to around $700 with JetBlue. Here are some tips that might help you when travelling on Spirit from Boston Logan airport. Eat Spirit is located in the B-terminal, gates B-37 and 38, with its own TSA security checkpoint. While it does have restrooms and places to sit the food selection is limited to a single food stand. I'd recommend eating at the Legal C Bar (number 77 in the image below) prior to going through the terminal security checkpoint. The food and service there were great. Drink The water and other drinks are cheaper if you buy them at the food cart rather than on the flight. Seats The seats on Spirit don't recline. They do this to reduce weight, seat cost, seat maintenance costs, and so seats don't impact the free space of other passengers,...

Yocto recipe SRC_URI for a BitBucket / GitHub ssh git repository

This is a particularly geeky post but because Google searches didn't turn up any information I thought it would be helpful to document the issue and solution for others. I was writing  Yocto recipes that pulled from BitBucket git repositories in ssh form and ran into several issues getting a SRC_URI that worked. GitHub uses the same syntax for their ssh repositories. A BitBucket / GitHub git url, in ssh form, looks like: < username >@bitbucket.org:< account name >/< repository name >.git a more concrete example for a git repository in one of my BitBucket accounts looks like: git@bitbucket.org:cmorgan/somerepository.git Yocto recipes can pull from git repositories by setting the SRC_URI variable appropriately. Unfortunately you can't just do: SRC_URI = "git@bitbucket.org:cmorgan/somerepository.git You'll get errors because the Yocto won't know what kind of url this is. You need to specify the protocol for Yocto to k...