#rayon — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #rayon, aggregated by home.social.
-
The Tokio/Rayon Trap and Why Async/Await Fails Concurrency
https://pmbanugo.me/blog/why-async-await-complect-concurrency
Comments: https://news.ycombinator.com/item?id=48929587
#HackerNews #Tokio #Rayon #AsyncAwait #Concurrency #Programming
-
EVRTCK: тайловый дельта-кодек для удалённого рабочего стола — как мы убили H.264 для UI-контента
Я Артур Валиев, разработчик EVRT Когда мы форкнули RustDesk и начали строить EvertyDesk — корпоративный удалённый рабочий стол с поддержкой Hyper-V, Proxmox, VirtualBox и умным агентом — первое, во что упёрлись, было видео. H.264 — стандарт де-факто. TeamViewer, AnyDesk, Windows App — все используют H.264. Он работает. Но он lossy. И вот здесь начинается проблема, о которой в статьях про remote desktop обычно не говорят. Когда оператор смотрит на терминал с git diff или читает трейс в VSCode — один размытый пиксель в букве это уже другой символ. H.264 при любом разумном битрейте вносит артефакты в области с резким контрастом. Точно туда, где у нас весь текст. Это неприемлемо. H.264 в lossless режиме ( QP=0 , lossless profile) существует, но поддержка в декодерах — через пень-колоду, а для mostly-static контента предикторы рассчитанные под видео с движением дают нулевой выигрыш над тривиальным delta-кодером. Нам не нужен motion estimation. Нам нужно: вот предыдущий кадр, вот текущий, вот список изменившихся тайлов, сожми только их. Мы написали EVRTCK.
https://habr.com/ru/articles/1059238/
#rust #remote_desktop #кодек #lossless #rayon #zstd #delta_encoding #видеокодек #EvertyDesk #производительность
-
‘Lighting him up!’
Van Raalte advertisement: 1941
#VanRaalte #Rayon #Stockings #WW2 #pinup #magazine #military #1940s #advertisement
-
【初配信】Y4T4が来たぞヤッター!【レヨン / にじさんじ】 https://www.playing-games.com/1004597/ #games #gaming #GamingTrending #Rayon #TrendingGames #Vtuber #ゲーム #ゲーム攻略 #ゲーム最新情報 #にじさんじ #れよん #初配信
-
https://www.wacoca.com/games/1364522/ 【初配信】Y4T4が来たぞヤッター!【レヨン / にじさんじ】 ##GAMING #Game #GameNews #games #GamingNews #GamingTrending #Rayon #TrendingGames #Vtuber #ゲーミング #ゲーム #ゲーム攻略 #ゲーム最新情報 #ドラゴンクエストV天空の花嫁 #にじさんじ #れよん #初配信
-
-
Beyond OpenMP in C++ and Rust: Taskflow, Rayon, Fork Union
https://ashvardanian.com/posts/beyond-openmp-in-cpp-rust/
#HackerNews #BeyondOpenMP #C++ #Rust #Taskflow #Rayon #ForkUnion
-
I miss having good contention profiling tools just already there with pprof. Running a cpu profiler on a #rayon #rust program pretty consistently only shows me activity from the one task I already expect to be cpu-heavy, and not what I need to know about the other tasks that block on mutexes and db queries.
-
Citation Pier Giorgio Frassati de Charles DESJOBERT
#editionsducerf #piergorgiofrassati #saint #patron #jeune #montagne #dieu #rayon #rayonner #modele #saintete #pieux #inventeur #inventer #unique #seigneur #amour #aimer #booktok #bookstok #booktube #booktuber #booklover #books #bookreview #bookstagram #bookstagrammer
-
That's it for the benchmarking! You can find my implementation at http://github.com/anisse/lbzip2-rs/ ; it's very much PoC-quality code, so use at our own risks! I chose to manually spawn threads instead of using rayon or an async runtime; there are other things I'm not proud of, like busy-waiting instead of condvar for example. 14/N
-
𝐃𝐢𝐬𝐜𝐨𝐯𝐞𝐫 𝐭𝐡𝐞 𝐃𝐢𝐟𝐟𝐞𝐫𝐞𝐧𝐜𝐞𝐬: 𝐖𝐨𝐨𝐥 𝐯/𝐬 𝐑𝐚𝐲𝐨𝐧 𝐅𝐚𝐛𝐫𝐢𝐜 𝐆𝐮𝐢𝐝𝐞
Explore the comprehensive guide on wool and rayon fabrics, delving into their origins, production processes, and unique characteristics.
https://articles.wifd.in/fabric-guide-about-wool-and-rayon
Regards,
Fashion Articles by Waves Fashion Institute
https://articles.wifd.in#fabricguide #wool #rayon #textiles #fashion #fabriccomparison #naturalfibers #syntheticfibers #sustainablefashion #materialscience
-
Параллельный A на Rust и Rayon: ищем путь для воробушка*
Привет, Хабр! Сегодня у нас задачка из мира природы: представьте, что маленький воробушек потерялся в городе. Ему нужно срочно найти путь домой, а дороги кишат кошками, людьми и прочими препятствиями. Разумеется, вручную искать маршрут — не вариант. Нам нужен алгоритм, а лучше параллельный, чтобы воробушек не ждал вечность. Какой алгоритм взять? Конечно же A *. Он и кратчайший путь найдёт, и с умом его построит. Но в одиночку он справляется медленно. Поэтому подключаем Rayon — библиотеку для многопоточных вычислений в Rust.
-
I also switched over to #rayon to handle the thread pool from my own simple implementation.
Provides a small yet noticeable performance improvement for all tools, especially system time when running fewer threads.
-
omg, how do I properly profile a #rust programme that uses #rayon?
Rayon is *fantastic* for data parallelization, but when I try to use `perf(1)` in Linux, and open the results with (e.g.) `hotspot(1)` it's all just totally full of a million calls to `rayon::…`. 😭 Is there a way to collapse them all down?
-
New blog post, this time a bug post mortem!
-
A new version 1.8.1 of #eza was released with a nice performance improvement, thanks to #rayon a data-parallelism library for #rust https://github.com/rayon-rs/rayon
`eza` is a replacement for the traditional `ls` command https://github.com/eza-community/eza/releases/tag/v0.18.1
-
‘A slippery customer!’
Original artist: ‘Rayon’ (1949)
#Rayon #1940s #cover #postcard #poster #pinup #cartoon #comic #comicbook #comicstrips
-
‘A right snag!’
Original artist: ‘Rayon’ (1949)
#Rayon #1940s #cover #postcard #poster #pinup #cartoon #comic #comicbook #comicstrips
-
Released wasm-bindgen-rayon 1.2.0 with much simplified workflow. https://github.com/RReverser/wasm-bindgen-rayon
You no longer need to mess around with a custom Worker, Comlink and whatnot, and instead can use #Rayon iterators with #Wasm directly on the main thread (it will use spinning to work around the `atomics.wait` limitation). #rustlang