Tracing Applications with SystemTap
Introduction to SystemTap
SystemTap is a powerful dynamic tracing tool that allows developers and system administrators to monitor and analyze the behavior of both the Linux kernel and user-space applications without modifying the code or restarting the process. By defining custom probes, users can track various aspects such as function calls, ...
Posted on Thu, 24 Sep 2026 16:41:05 +0000 by opticmike
Parallel Matrix Multiplication in Julia
In this notebook, we will:
Parallelize a simple algorithm
Learn about the performance of different parallel strategies
Implement the parallelization in Julia
Problem Description
Asssumptions
All matrices, including A, B, and C, are initially stored on the master process.
The final result will overwrite the matrix C.
Steps
To implement paral ...
Posted on Wed, 20 May 2026 04:43:01 +0000 by reeferd