The views and opinions expressed in this account are those of my own and do not represent those of my employer, NVIDIA.
Tutorials and Workshops kick off this morning!
Some Student Programming events are also running today:
- HPC/AI Crash Course - 8:30AM until 3:30PM in Room 263. Please note this required preregistration
- Career Panel - 3:45PM until 4:45PM in Room 263
Tutorials and Workshops kick off this morning!
Some Student Programming events are also running today:
- HPC/AI Crash Course - 8:30AM until 3:30PM in Room 263. Please note this required preregistration
- Career Panel - 3:45PM until 4:45PM in Room 263
The TLDR is that a really big HACC job ran on Frontier with a bunch of new algorithmic optimizations. Neato.
#ORNL #HPC #SC25
Link: ow.ly/9L6o50Xs2gv
The TLDR is that a really big HACC job ran on Frontier with a bunch of new algorithmic optimizations. Neato.
Each day we'll explore a fun optimisation in C or C++; some low-level, x86 or ARM-specific, some high-level. Hope you'll join me!
YT: youtube.com/mattgodbolt
Blog: xania.org
Each day we'll explore a fun optimisation in C or C++; some low-level, x86 or ARM-specific, some high-level. Hope you'll join me!
YT: youtube.com/mattgodbolt
Blog: xania.org
The course is free with Student Program registration, but spots are limited.
sc25.supercomputing.org/2025/08/igni...
The course is free with Student Program registration, but spots are limited.
sc25.supercomputing.org/2025/08/igni...
- Incredibly useful for experts in a field that are able to correct for their errors
- Really dangerous for layfolk who don’t know what they don’t know
- Incredibly useful for experts in a field that are able to correct for their errors
- Really dangerous for layfolk who don’t know what they don’t know
As context: AEA approximately never makes such public statements
This is a big deal
As context: AEA approximately never makes such public statements
This is a big deal
This is a huge milestone. We reworked the core to add compiler dependencies, and we're introducing a stable package API.
🚀1.0 also adds concurrent builds, better includes, and much more -- read it all in the release notes!
github.com/spack/spack/...
This is a huge milestone. We reworked the core to add compiler dependencies, and we're introducing a stable package API.
🚀1.0 also adds concurrent builds, better includes, and much more -- read it all in the release notes!
github.com/spack/spack/...
1) Science is fundamentally a jobs program. Many 100,000s are employed to do science and work for you, the US taxpayer.
1) Science is fundamentally a jobs program. Many 100,000s are employed to do science and work for you, the US taxpayer.
o Workshops with Proceedings
o Symposium-style Workshops
sc25.supercomputing.org/2025/05/anno...
#HPC
o Workshops with Proceedings
o Symposium-style Workshops
sc25.supercomputing.org/2025/05/anno...
#HPC
int main() {
int a = 0xE + 1; // compiles
int b = 0xE+1; // doesn't
}
int main() {
int a = 0xE + 1; // compiles
int b = 0xE+1; // doesn't
}
But code that runs fast while producing garbage is even worse than code that doesn't run at all.
I think the goal *must* be to enable the science in an accessible, complaint way
It teaches you everything from how breakpoints work, to tracing shared library loads, to executing function calls inside the running process, and more