# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/vbxeh3a
GPU 內核虛擬化 - 原理篇**
cgpu目前市面上大部分文章都只提了一下通過攔截驅動 ioctl、mmap、read、write 接口的調用來實現內核虛擬化,但是具體怎麼實現沒有描述。內核虛擬化是從阿里最先有的,這篇 文章 \[1\] 對 cgpu 是分析的最深入的。也提供了一個之前版本的代碼:https://github.com/lvmxh/cgpu.git由於代碼裏面的核心部分 cgpu.o 沒有開源,所以只能分析一些非核心的 ⌘ Read more