-
Disable Secure Boot.
-
Assuming that you have a bootable USB stick with PopOS, boot from it and install PopOS. I 've installed PopOS on the external drive.
-
Install reEFInd.
sudo add-apt-repository ppa:rodsmith/refind
==================================== test session starts ===================================== | |
platform linux -- Python 3.10.10, pytest-7.3.0, pluggy-1.0.0 -- /mnt/E/Workspaces/cppyy/.venv2/bin/python | |
cachedir: .pytest_cache | |
rootdir: /mnt/E/Workspaces/cppyy/src/cppyy | |
plugins: xdist-3.2.1 | |
[gw0] linux Python 3.10.10 cwd: /mnt/E/Workspaces/cppyy/src/cppyy/test | |
[gw0] Python 3.10.10 (main, Mar 5 2023, 22:26:53) [GCC 12.2.1 20230201] | |
gw0 [504] | |
scheduling tests via LoadScheduling |
#! /usr/bin/env python3 | |
# coding:utf-8 | |
############################################################################### | |
# | |
# The Cling Interpreter | |
# | |
# Cling Packaging Tool (CPT) | |
# | |
# tools/packaging/cpt.py: Python script to launch Cling Packaging Tool (CPT) |
Disable Secure Boot.
Assuming that you have a bootable USB stick with PopOS, boot from it and install PopOS. I 've installed PopOS on the external drive.
Install reEFInd.
sudo add-apt-repository ppa:rodsmith/refind
#!/usr/bin/env python3 | |
from math import exp | |
import jax.numpy as jnp | |
import jax.random as jrn | |
import jax.profiler as jpr | |
import random | |
from jax import grad, vmap | |
from typing import List | |
Student: Baidyanath Kundu
Mentors: Vassil Vassilev, Ioana Ifrim
Organisation: CERN-HSF
std::unordered_map< std::pair<int,int>, int, HASH > hash_table; |
struct HASH { | |
size_t operator()(const std::pair<int,int> &p) const { | |
return ~p.first ^ p.second; // the first is negated to differentiate between mirrored pairs | |
} | |
}; |
v.erase(std::remove_if(v.begin(), v.end(), is_zero), v.end()); |