Infra Learning Club
Infra Learning Club
Feb 23, 2025 · Fundamentals

How to Dynamically Decompress CUDA Fatbin Files Compressed by NVCC

This article explains why enabling NVCC's --fatbin-options -compress-all breaks remote GPU calls, describes the fatbin file layout, shows how to extract and analyze the binary with objcopy, and provides a step‑by‑step implementation of a decompression routine for both ELF and PTX sections.

CUDAGPUbinary format
0 likes · 9 min read
How to Dynamically Decompress CUDA Fatbin Files Compressed by NVCC
MaGe Linux Operations
MaGe Linux Operations
Apr 10, 2024 · Fundamentals

How to Compress and Decompress ZIP and TAR Files in Python

This guide explains how to use Python's built‑in zipfile and tarfile modules to compress individual files or entire directories into ZIP or TAR archives, traverse archive contents, and extract them, covering both plain TAR and compressed variants such as .tar.gz.

File Compressioncompressiondecompression
0 likes · 6 min read
How to Compress and Decompress ZIP and TAR Files in Python