110 likes | 230 Vues
This presentation outlines the proposed workflow and the current progress in our CAD contest project. We detail the mapping process for logic functions, including AND, OR, and hybrid components, as well as the design of adders and multipliers. We will present our findings on continuous ANDs and ORs within the design framework, along with the establishment of module libraries for efficient design integration. Also discussed will be challenges such as parser bugs and output issues, along with the projected schedule for further developments.
E N D
CAD Contest Progress –Lab231-Cix Member: Chih-Chung, Wan-Chen, Chia-Yao, Sharon Speaker: Wan-Chen Date: 2013/08/14
Outline • Proposed flow • Progress • Schedule
Progress - Mapping • Ex: • and/or/nand/nor : find AND node(use structure directly) • adder/multiplier: find FA and its sub-functions (cut-based) • hybrid: see it as either adder or multiplier • index: find multiplexer
Progress - Mapping • Finding continuous ANDs in the design → OK. • Finding continuous ORs in the design → OK.
Progress - Mapping module lib1(in1, in2, out); input [1:0] in1; input [3:0] in2; output out; assign out = in2[in1]; endmodule In1[1] In1[0] In2[3] In2[2] out In2[1] In2[0]
Progress - Mapping • Design: • Finding continuous ORs. • Finding 2n ANDs and every AND has (n+1) inputs. • “n” is # of selectors.
Progress - Mapping • Design:
Progress - Mapping • Design to library: S0 S1 A B out C const. 0
Progress and Schedule • Cut & Mapping: Wan-Chen, Sharon • Parser bug & Output: Chia-Yao