Skip to content

Instantly share code, notes, and snippets.

@realugbun
realugbun / gist:8add8e716e3d768c32f7ebaa687922a4
Created March 22, 2026 04:34
Known-Good Strix Halo ROCm + llama.cpp Stack
### Radeon 8060S / gfx1151 · Proxmox LXC passthrough · ROCm 7.2 · llama.cpp HIP build
## Results
Qwen3.5-35B-A3B Q4_K_M (21 GB GGUF): ~45 t/s single user, ~168 t/s aggregate at 16 parallel slots. Memory bandwidth limited at that concurrency.
```bash
llama-server \
-m /models/Qwen3.5-35B-A3B-Q4_K_M.gguf \
--host 0.0.0.0 --port 8091 \
@realugbun
realugbun / eventBridgeAPIDestinations.ts
Created October 1, 2021 12:42
AWS Cloud Development Kit (CDK) EventBridge API Destinations
// ####### Event bus #######
// Create the bus
const bus = new events.EventBus(this, "myEventBus");
new cdk.CfnOutput(this, "BusName", {value: bus.eventBusName});
// ####### Connection #######
// Create connection for API Destination to use. This example uses basic auth. Check the docs for other options.
const myConnection = new events.CfnConnection(this, 'myConnection',{