Other than this blog post, I am not aware of any official documentation on parallelsism.
This may not be a good example, but I wrote a code to calculate pi.
N = ARGV[0].to_i
M = 32
channel = Channel(Float64).new(N)
M.times do |value|
spawn do
c = 0
N.times do
x = Random.rand
y = Random.rand
r = x ** 2 + y ** 2
c += 1 if r < 1
end
channel.send(c / N.to_f)
end
end
r = Array.new(M){ channel.receive }.sum / M
puts r * 4
Build with single thread
crystal build --release -o pi_st pi.cr
Build with multi-threading
crystal build --release -D preview_mt -o pi_mt pi.cr
It can be easily benchmarked using a command line tool called hyperfine.
hyperfine --warmup 1 --export-csv crystal-parallel-bench.csv \
'CRYSTAL_WORKERS=1 ./pi_st 5000000' \
'CRYSTAL_WORKERS=1 ./pi_mt 5000000' \
'CRYSTAL_WORKERS=2 ./pi_mt 5000000' \
'CRYSTAL_WORKERS=4 ./pi_mt 5000000' \
'CRYSTAL_WORKERS=6 ./pi_mt 5000000' \
'CRYSTAL_WORKERS=8 ./pi_mt 5000000'
Visualize the obtained data using Python’s Seaborn. (I used the Crystal language here for fun.)
require "../src/crython"
Crython.session do
pd = Crython.import("pandas")
plt = Crython.import("matplotlib.pyplot")
file_path = "/path/to/crystal-parallel-bench.csv"
df = pd.read_csv(file_path)
error_lower = df["mean"] - df["min"]
error_upper = df["max"] - df["mean"]
error = [error_lower, error_upper]
plt.figure(figsize: {10, 6})
plt.barh(df["command"], df["mean"], xerr: error, capsize: 5)
plt.ylabel("Command")
plt.xlabel("Mean Execution Time (s)")
plt.title("Benchmark Results with Corrected Min-Max Error Bars (Horizontal)")
plt.tight_layout
plt.savefig("/path/to/crystal-parallel-bench.png")
end
The results were about as expected.
Recently, WaitGroup was added by ysbaddaden and syntax was added by jgaskins.
If you want to understand the whole thing, you need to follow the core members and contributors, or take the time to read the code and explore it deeply by yourself (with the help of AI).
Understanding the cutting edge is like that in any field. There is a certain mental cost. (Whether you can pay that cost depends on how you allocate your time in life, rather than on your ability. Talk to yourself. (Unfortunately, I can’t pay that cost, so I’m waiting and trusting the core team))