Skip to content
View YilouWang's full-sized avatar

Organizations

@verilator

Block or report YilouWang

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
YilouWang/README.md
Yilou's Silicon Timeline

王译楼 · Yilou Wang 👋

DV Eng. @ PlanV · TUM M.Sc. · AI & Open-Source Verification Enthusiast

planv focus lang

module Yilou_Wang_Career (
  input  logic        clk,
  input  logic        rst_n,
  output logic [31:0] career_impact
);

  // IF: Harbin Institute of Technology
  localparam string IF_STAGE = "HIT · B.Sc. EE / Comm. Eng.";

  // ID: Technical University of Munich
  localparam string ID_STAGE = "TUM · M.Sc. EE / Comm. Eng.";

  // EX: Infineon Technologies — Internship
  localparam string EX_STAGE = "Infineon · SV / UVM / cocotb / pyuvm";

  // MEM: PlanV — current role (active stage)
  localparam string MEM_STAGE = "PlanV · Verification Engineer · Verilator / RISC-V / Open-Source Verification";

  // WB: Life — AI & OSS enthusiast
  localparam string WB_STAGE = "AI for Verification · Open Source EDA";

  always_ff @(posedge clk or negedge rst_n) begin
    if (!rst_n) career_impact <= 32'h0;
    else        career_impact <= career_impact + 32'd1;  // keep shipping
  end

endmodule

Journey

  • 🎓 2017–2021: 🇨🇳 B.Eng. EE (Fuxin 🚄 Harbin)
  • 🎓 2021–2024: 🇩🇪 M.Sc. EE @ TUM (China ✈️ Munich)
  • 🧪 Internship: NeuSoft & Infineon
  • 💼 2024–now: DV Engineer @ PlanV

Original Projects

中文创作者轮播图引擎。把选题文案变成可渲染配置,并跑质量评分闭环。

DV playground for SV / UVM / Verilator / cocotb. Practical examples for onboarding and quick experiments.


Contributions & Forks


Publications

  • 📄 Advancing Open-Source Verification: Enabling Full Randomization in Verilator — DVcon Europe 2025 · Oct 15, 2025
  • 📄 Enable Reuse of SystemVerilog Verification IPs in cocotb/pyuvm — DVcon Europe 2024 · Oct 16, 2024

📝 Technical Writing

Verification Blog Waveform

Contact

linkedin

Pinned Loading

  1. Toy4Joy_DV Toy4Joy_DV Public

    Hands-on digital verification playground covering SystemVerilog, UVM, Verilator, and pyUVM with practical examples.

  2. PlanV_Verilator_Feature_Tests PlanV_Verilator_Feature_Tests Public

    Forked from planvtech/PlanV_Verilator_Feature_Tests

    PlanV CI System for testing Verilator-Features

    SystemVerilog

  3. badai_cardsmith-oss badai_cardsmith-oss Public

    badai_cardsmith 开源版:精简模板与系列配置,支持生成、渲染与质量评估。

    Python

  4. MS_Thesis_cocotb-BSHL MS_Thesis_cocotb-BSHL Public

    Forked from Infineon/cocotb-BSHL

    Enables access from cocotb/Pyuvm to SystemVerilog Verification IP. Besides re-usable code, this repo contains a simple example implementation

    Python