• Generate JSON response in Stoplight

    Well-written documentation of a web API is an indispensable resource to learn its usage for users. It should be comprehensive and concise, covering all endpoints with supporting parameters and response format. OpenAPI allows us to provide the documentation in a standard manner to use various tools to enhance documentation generation.... [Read More]
    Tags:
  • New C Frontend for MLIR Affine

    MLIR is a powerful tool to represent the complicated semantics with retaining the high-level structure of the code. The most notable thing about MLIR is polyhedral compilation support by Affine dialect. The capability of expressing the static control part (SCoP) of the program allows us to accomplish the tailored optimization... [Read More]
    Tags:
  • Control Log Level of Terraform

    Terraform in the cloud writes the stderr log in the console so that we can quickly discover what resources are created, changed, and destroyed. However, it may sometimes be too lengthy to grasp the complete information quickly. As we do for the typical long-running application, it is necessary to control... [Read More]
  • What is FMA (Fused multiply-add)

    FMA (Fused multiply-add) is a technical term representing the floating-point operation performed multiplication and addition in one step. This operation executes the following arithmetic calculation, which frequently shows up in various programs. Unlike separating multiplication and additional operation, it achieves higher performance and numerical precisions. [Read More]
    Tags: