From 70ccc8b630e3739743e20e190d9cebb63328d989 Mon Sep 17 00:00:00 2001 From: Siva <srk.it38@gmail.com> Date: Fri, 24 Nov 2017 00:04:57 +0530 Subject: [PATCH] Documentation correction (#665) Readability. --- src/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/README.md b/src/README.md index e4fc992b2..dfa7a1d33 100644 --- a/src/README.md +++ b/src/README.md @@ -4,13 +4,13 @@ Header files in include are public APIs that share across modules. There can be internal header files within each module that sit in src. ## Modules -- common Internal common utilities. -- api API function registration -- lang The definition of DSL related data structure -- arithmetic Arithmetic expression and set simplification -- op The detail implementations about each operation(compute, scan, placeholder) -- schedule The operations on the schedule graph before converting to IR. -- pass The optimization pass on the IR structure -- codegen The code generator. -- runtime Minimum runtime related codes -- contrib Contrib extension libraries +- common: Internal common utilities. +- api: API function registration +- lang: The definition of DSL related data structure +- arithmetic: Arithmetic expression and set simplification +- op: The detail implementations about each operation(compute, scan, placeholder) +- schedule: The operations on the schedule graph before converting to IR. +- pass: The optimization pass on the IR structure +- codegen: The code generator. +- runtime: Minimum runtime related codes +- contrib: Contrib extension libraries -- GitLab