Files
Aviral Goel 004784ef98 chore(copyright) update library wide CMakeLists.txt copyright header template (#3313)
* chore(copyright) update library wide CMakeLists.txt files copyright header template

* Fix build

---------

Co-authored-by: Sami Remes <samremes@amd.com>
2025-11-28 13:49:54 -08:00
..

Client Example: GEMM pipeline for microscaling (MX)

How to Run

Prerequisites

Please follow the instructions in the main Build Guide section as a prerequisite to building and running this example.

cd composable_kernel/build
cmake -DCMAKE_CXX_COMPILER=/opt/rocm/bin/hipcc -D DTYPES="fp8" ..
make -j
make install

Build and run

/opt/rocm/bin/hipcc gemm_mx_fp8.cpp -o gemm_mx_fp8

# Example run
./gemm_mx_fp8

Source Code Structure

Directory Layout

client_example/28_gemm_mx/
├── gemm_mx_fp8.cpp       # GEMM MX (fp8)
├── CMakeLists.txt        # Build configuration for the example

Back to Client Examples