summaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/memory/serialize.h
Commit message (Collapse)AuthorAgeFilesLines
* Introduce aligned_malloc; drop more YTAlloc dependenciesbabenko2022-11-031-1/+2
|
* [pg] initialize tx timestampsvvvv2022-10-301-21/+7
| | | | влияет на функции now, statement_timestamp - они будут брать кешированное значение с момента инициализации comp graph. clock_timestamp сейчас всегда возвращает некешированное системное время - это потом надо будет увести в TimeProvider
* Remove a workaround for ancient CUDA versionsdfyz2022-10-291-0/+34
`#define noexcept throw()` is a questionable idea, since replacing `noexcept` with `throw()` in expressions such as `noexcept(true)` results in spectacular compiler errors. We stopped supporting CUDA 8 (and even CUDA 9) long ago, which means we can just get rid of the problematic define.