Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ICPaperX: A one-stop search engine for top-tier IC conference & Journals papers

Hits

📝 About The Project

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.

📄 Data Format Specification

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.

📂 Supported Conferences and Journals

This repository currently includes paper data from the following top-tier conferences and journals. The specific details for each folder are as follows:

Conference

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

Journal

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

🛠️ Quick Start

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')

📜 Disclaimer & License

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.

About

ICPaperX: A one-stop search engine for top-tier IC conference & journal papers

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages