Research on Optimal PMU Placement Optimization Based on ILP with Matlab Code

Research on Optimal PMU Placement Optimization Based on ILP with Matlab Code

βœ… Author’s Profile: A research enthusiast and Matlab simulation developer, skilled in data processing, modeling simulation, program design, complete code acquisition, paper reproduction, and scientific simulation. 🍎 Previous Reviews: Follow my personal homepage:Matlab Research Studio 🍊 Personal Motto: Investigate to gain knowledge, complete Matlab code and simulation consultation available via private message. πŸ”₯ Content Introduction … Read more

Understanding SIMD in Computer Architecture

Understanding SIMD in Computer Architecture

1. Introduction In previous articles, we explored the concepts related to Instruction Level Parallelism (ILP). Clearly, in addition to instruction-level parallelism, processors also exhibit parallelism in other dimensions. This article presents the SIMD technology within Data Level Parallelism (DLP). First, let’s consider a question: why was data-level parallelism developed? Does relying solely on ILP have … Read more

Using Failpoint for Fault Injection in Go

Using Failpoint for Fault Injection in Go

Recently, while looking at the TiDB source code, I found that it used failpoint for fault injection, which I found very interesting. It involves code generation and parsing the code AST tree for replacement to implement fault injection. I will also try to analyze it and learn how to parse the AST tree to generate … Read more