Search found 2 matches

by gpuuser
Sun Dec 03, 2023 5:50 pm
Forum: Submit Suggestions
Topic: Possibility of L0 cache with faster lookup by trading off some cache-hits, infront of L1.
Replies: 1
Views: 2212

Possibility of L0 cache with faster lookup by trading off some cache-hits, infront of L1.

I don't know about exact algorithms behind the L1 cache. But if they don't use direct-mapped or mmap as client of LRU/LFU, maybe it increases performance by serving some of cache-hits directly from OS paging system (by mmap) or simpler indexing/search (simply a direct-mapped cache)? I guess it could...
by gpuuser
Sun Dec 03, 2023 5:37 pm
Forum: Submit Suggestions
Topic: GpuRamDrive: GPU VRAM as RAMdisk: Game changer!?
Replies: 32
Views: 41565

Re: GpuRamDrive: GPU VRAM as RAMdisk: Game changer!?

Communication with graphics cards have some overhead like 20-50 microseconds due to synchronization between host environment (i.e. C++, CPU) and device environment (C, GPU) using sync calls in OpenCL/CUDA/etc. This makes at most 20000 operations per second in a single thread. 20000 x 4kB read operat...