🏳️🌈
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
HPLinpack benchmark input file | |
Innovative Computing Laboratory, University of Tennessee | |
HPL.out output file name (if any) | |
6 device out (6=stdout,7=stderr,file) | |
1 # of problems sizes (N) | |
5040 Ns | |
1 # of NBs | |
128 NBs | |
0 PMAP process mapping (0=Row-,1=Column-major) | |
1 # of process grids (P x Q) |
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
HPLinpack benchmark input file | |
Innovative Computing Laboratory, University of Tennessee | |
HPL.out output file name (if any) | |
6 device out (6=stdout,7=stderr,file) | |
1 # of problems sizes (N) | |
17400 Ns | |
1 # of NBs | |
128 NBs | |
0 PMAP process mapping (0=Row-,1=Column-major) | |
1 # of process grids (P x Q) |
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
# Ross is a programmer for Megabank, working on a new smartphone app that | |
# helps users transfer money between accounts. He's relatively new to R, | |
# the language preferred by the top brass, and is not entirely sure of | |
# the difference between all the operators available for assigning | |
# values to variables. Specifically, there's this "scoped assignment" thing | |
# that sure looks like a harpoon to Ross. What's it for? | |
# Ross opens a bank account, then uses the app to perform a series of | |
# transactions. Because he's no fool, he does so in the lobby of a | |
# Megabank branch, and the bank teller informs him after each step what |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#!/usr/bin/env python3 | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from numpy.random import default_rng | |
rng = default_rng() | |
n = int(100_000) | |
N = int(1_000_000_000) | |
pop = int(983) # children born in Kiev |
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
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
about = """ | |
A random card generator for The Quiet Year, which ends when 🂮 is drawn. | |
""" | |
fleet = """ | |
short game: remove 5 cards from each suit; drop 🃎 but keep 🂮 | |
""" |
OlderNewer