# 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/3loldma
CUDA 驅動軟件架構(譯)**
概述簡而言之,CUDA 驅動程序負責管理 GPU 資源並調度 GPU 上的計算任務。驅動程序爲用戶提供 API,用於在 GPU 上分配內存、將數據複製到分配的內存區域、從內存區域中複製數據以及在內存區域之間複製數據,並啓動對數據進行操作的 GPU 內核。驅動程序還提供了 CUDA 與其他用戶 API 之間的互操作性。這種互操作性使用戶能夠在 CUDA 和其他 API 之間高效地共享 GPU 內存。 ⌘ Read more