Monthly Archives: November 2023

OS handler overview

Posted in Uncategorized | Leave a comment

Transformer, attention and what it changed

Let’s begin by examining the fundamentals. In the initial stages, machine learning involves the process of mapping information to a mathematical representation, such as Euclidean vectors. This process is commonly referred to as embedding. During embedding, the number of dimensions … Continue reading

Posted in Uncategorized | Leave a comment

Murphys law for API

Murphy’s Law asserts that if something has the potential to go awry, it inevitably will. The value of an API stems from its utilization, and an increased user base enhances its overall worth. APIs ought to be constructed with a … Continue reading

Posted in Uncategorized | Leave a comment

The kernel and operating system thing

Let’s begin with the arithmetic unit (ALU) and how we access it from a central viewpoint, commonly referred to as the CPU. Before the ALU can perform calculations, it must know where to fetch data and initiate the task (memory) … Continue reading

Posted in Uncategorized | Leave a comment

Web Assembly versus RISC-V, but why?

WebAssembly and RISC-V are two new Instruction Set Architectures (ISAs). WebAssembly uses a stack machine model (Van Neumann Architecture), while RISC-V, like most hardware architectures, uses a register machine (Harvard Architecture). However, the line between bytecode and actual hardware instructions … Continue reading

Posted in Uncategorized | Leave a comment

Light at the end of the SdV OS tunnel

Traditionally, operating systems, especially their kernel components, have played a pivotal role as an essential intermediary layer between application software and hardware. In this well-established configuration, a significant portion of CPU resources, approximately 20% on average, is allocated to the … Continue reading

Posted in Uncategorized | Leave a comment