This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <cassert> | |
| #include <iostream> | |
| #include <tuple> | |
| namespace details | |
| { | |
| template <size_t v> | |
| struct ConstexprNum | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM nvidia/cuda:11.6.2-devel-ubuntu20.04 | |
| ENV TZ=Asia/Yerevan | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| # disable certificate check (for kitware) | |
| RUN touch /etc/apt/apt.conf.d/99verify-peer.conf && \ | |
| echo >> /etc/apt/apt.conf.d/99verify-peer.conf "Acquire { https::Verify-Peer false }" | |
| # add kitware repo so that fresh cmake could be installed |