ECE 459 Lecture 15: Rayon

preview_player
Показать описание
Rust has a nice package management system that means we don't have to reinvent the wheel and we can use things like Crossbeam as a nice way of accomplishing some work in Rust that would otherwise have to be done the hard way.
Рекомендации по теме
Комментарии
Автор

CLIPBOARD-BASED INHERITANCE. Love it!!

magicinternetmoney
Автор

23:30 ... how could he do this? doesnt he know any better?

baileythompson
Автор

In ironic plot twist CAS code is still wrong, it is missing a check that val you want to set to max is still the largest.

current max:5
T1: try to write element 6
T2: try to write element 7

T2 succeeds, T1 fails first time, next time it succeeds and max is 6

Voy