Usage Pattern - 5.2 English - 68552

AOCL API Guide (68552)

Document ID
68552
Release Date
2025-12-29
Version
5.2 English
// 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);