// Initialize post-operations
aocl_post_op post_ops;
aocl_post_op_init(&post_ops);
// Add bias operation
aocl_post_op_bias bias_op = {.bias = bias_vector};
aocl_post_op_append_bias(&post_ops, &bias_op);
// Add activation
aocl_post_op_eltwise relu_op = {.algo = AOCL_ELTWISE_RELU};
aocl_post_op_append_eltwise(&post_ops, &relu_op);
// Use in GEMM
aocl_gemm_f32f32f32of32(..., &post_ops);