Project Website: IC Top-Tier Conference & Journal Paper Explorer
This project aims to systematically collect and organize the published paper metadata from top-tier conferences and journals in Integrated Circuit (IC).
To facilitate quick retrieval, statistical analysis, and secondary development for researchers and developers, all paper metadata is archived into folders by Conference / Journals Name and subsequently by Year. The data is uniformly extracted into a highly readable JSON format.
Each JSON file represents a collection of papers for a specific conference in a given year. The data is stored in a dictionary (Key-Value) structure for simplicity.
This repository currently includes paper data from the following top-tier conferences and journals. The specific details for each folder are as follows:
| No. | Name | Folder | Years Covered | Official Data Source |
|---|---|---|---|---|
| 1 | A-SSCC (Asian Solid-State Circuits Conference) | ASSCC | 2016 - 2024 | |
| 2 | CICC (IEEE Custom Integrated Circuits Conference) | CICC | 2017 - 2026 | |
| 3 | DAC (Design Automation Conference) | DAC | 2016 - 2025 | |
| 4 | ISCA (International Symposium on Computer Architecture) | ISCA | 2016 - 2025 | |
| 5 | ISCAS (IEEE International Symposium on Circuits and Systems) | ISCAS | 2016 - 2026 | |
| 6 | ISSCC (IEEE International Solid-State Circuits Conference) | ISSCC | 2016 - 2026 | |
| 7 | VLSI (Symposium on VLSI Technology and Circuits) | VLSI | 2016 - 2024 |
| No. | Name | Folder | Years Covered | Official Data Source |
|---|---|---|---|---|
| 1 | JSSC (IEEE Journal of Solid-State Circuits) | JSSC | 2016 - 2025 | |
| 2 | TCAS-I (IEEE Transactions on Circuits and Systems I: Regular Papers) | TCAS-I | 2016 - 2025 | |
| 3 | TCAS-II (IEEE Transactions on Circuits and Systems II: Express Briefs) | TCAS-II | 2016 - 2025 |
You can directly download the corresponding JSON files and easily parse them using Python:
import json
# Load ISSCC 2026 paper data
with open('./ISSCC/isscc_2026.json', 'r', encoding='utf-8') as f:
papers = json.load(f)
# Print the first 5 papers
for paper in papers[:5]:
print(f'Title: {paper["title"]}\nURL: {paper["url"]}\n')This project only crawls and organizes publicly available, factual metadata (titles and public links) of academic papers. It does not contain full texts or abstracts protected by copyright. The final interpretation rights of all data belong to the official committees of the respective conferences and journals.