This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### 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 \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ####### 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',{ |