Micro Optimizing Go Code
Offered By: Gopher Academy via YouTube
Course Description
Overview
Explore micro-optimization techniques for Go code in this conference talk from GopherCon 2018. Learn how to improve performance by writing more efficient Go, starting with a hash function implementation. Follow along as the speaker optimizes code from a direct RFC implementation to surpassing the standard library's performance. Discover the impact of API design on performance, avoid microbenchmarking pitfalls, and gain an introduction to profiling. Acquire practical tips for optimization, including algorithmic improvements, program tuning, and diving deep into performance analysis. Examine additional examples from standard libraries, particularly in cryptography, and other high-performance Go projects to further enhance your optimization skills.
Syllabus
Introduction
What is BlakeToHash
The problem
Blake
Hash Interface
Go Benchmark Ecosystem
Go Testing
Benchmarks
WebView
Math Bits
G
Inlining
Inliner
Hard stops
Round function
inline function
G is too expensive
Get rid of function calls
Triple addition
Budget code
Dont chase this
Whats next
P prof
Assembly
Bounce Checking
SSA
Go Compiler
Linear code
Bounce checks
Hash state
Preventative hints
Eliminate bounds checks
Performance improvement
Eliminate allocations
Slices
Finalize
Pattern Matching
Sum
Some
Slice
Pvalues
Diminishing Returns
More Optimization
Worth it
Taught by
Gopher Academy
Related Courses
A Holistic Go ExperienceGopher Academy via YouTube Safe, Fast, and Easy - Building a Plugin System with WebAssembly
Gopher Academy via YouTube A Journey Through Integration Testing with Go - What Could Go Wrong?
Gopher Academy via YouTube Kraken Wrangling for Dummies - Go Module Dependency Management at Scale
Gopher Academy via YouTube Go, the Data Engineer's Missing Tool?
Gopher Academy via YouTube