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
Application | Architecture | L1D [kB] | IPC (L1I=8kB) | IPC (L1I=16kB) | IPC (L1I=32kB) | |
---|---|---|---|---|---|---|
crc32 | arm | 8 | .36748536783619406404 | .36752832267653294602 | .36752858879498823430 | |
crc32 | arm | 16 | .37162961571734866440 | .37165599709076517445 | .37165617332080490819 | |
crc32 | arm | 32 | .37162972425097425049 | .37165614412931438484 | .37165638717564200091 | |
crc32 | arm | 64 | .37204743335887199712 | .37207379195140604508 | .37207400845431505980 | |
crc32 | x86 | 8 | .24149315098947192748 | .24149356681634364117 | .24148247813550427214 | |
crc32 | x86 | 16 | .24278819871540530945 | .24278844217554801587 | .24278893805242551291 | |
crc32 | x86 | 32 | .24456884459475138251 | .24456920477644927437 | .24456954648571111852 | |
crc32 | x86 | 64 | .24456893606302772620 | .24456918700200181530 | .24456957484502649185 | |
sha | arm | 8 | .38729880861074794571 | .38737412129392143235 | .38737921423219464804 |
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
Application | Architecture | L1I [kB] | IPC (L1D=8kB) | IPC (L1D=16kB) | IPC (L1D=32kB) | IPC (L1D=64kB) | |
---|---|---|---|---|---|---|---|
crc32 | arm | 8 | .36748536783619406404 | .37162961571734866440 | .37162972425097425049 | .37204743335887199712 | |
crc32 | arm | 16 | .36752832267653294602 | .37165599709076517445 | .37165614412931438484 | .37207379195140604508 | |
crc32 | arm | 32 | .36752858879498823430 | .37165617332080490819 | .37165638717564200091 | .37207400845431505980 | |
crc32 | x86 | 8 | .24149315098947192748 | .24278819871540530945 | .24456884459475138251 | .24456893606302772620 | |
crc32 | x86 | 16 | .24149356681634364117 | .24278844217554801587 | .24456920477644927437 | .24456918700200181530 | |
crc32 | x86 | 32 | .24148247813550427214 | .24278893805242551291 | .24456954648571111852 | .24456957484502649185 | |
sha | arm | 8 | .38729880861074794571 | .39276023048618569497 | .39543204856888615616 | .39619449429286224543 | |
sha | arm | 16 | .38737412129392143235 | .39247427657579784861 | .39551056724031694147 | .39627340667156902850 | |
sha | arm | 32 | .38737921423219464804 | .39248028288354555072 | .39551524773359971494 | .39627907995376373499 |
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 <QTRSensors.h> | |
// Pins for controlling left motor | |
#define ENA 10 // needs to be a PWM pin | |
#define IN1 4 | |
#define IN2 5 | |
// Pins for controlling right motor | |
#define ENB 9 // needs to be a PWM pin | |
#define IN3 6 |
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
\chapter{Introduction} | |
This document explains the reference SystemVerilog implementation of the charon architecture. | |
\chapter{Core} | |
This chapter covers the implementation of the core architecture as defined by \todo{reference to architecture spec}. That is, the intrastructure required to transfer data words between abstract ports as dictated by a sequence of instructions in main memory. It does not assign any meaning to the ports. | |
\section{Top-level structure} |
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
Order: | |
1 protopack of power boards with steel stencil | |
1 protopack of power boards without stencil | |
1 protopack of motor boards with steel stencil | |
1 protopack of motor boards without stencil | |
ZIPs of Gerbers can be prepared for upload using the script in the "pcb-util" repository [1]. | |
Parameters (most of these are just the defaults): | |
Material: FR4 proto |
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
Jan 17 19:16:03 coloris slim[2479]: pam_unix(slim:session): session opened for user kier by (uid=0) | |
Jan 17 19:16:03 coloris systemd[1]: Created slice User Slice of kier. | |
Jan 17 19:16:03 coloris systemd[1]: Starting User Manager for UID 1000... | |
Jan 17 19:16:03 coloris systemd[1]: Started Session 3 of user kier. | |
Jan 17 19:16:03 coloris systemd-logind[2035]: New session 3 of user kier. | |
Jan 17 19:16:03 coloris systemd[2504]: pam_unix(systemd-user:session): session opened for user kier by (uid=0) | |
Jan 17 19:16:03 coloris systemd[2504]: Reached target Paths. | |
Jan 17 19:16:03 coloris systemd[2504]: Reached target Sockets. | |
Jan 17 19:16:03 coloris systemd[2504]: Reached target Timers. | |
Jan 17 19:16:03 coloris systemd[2504]: Reached target Basic System. |
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
extraBuildCommands = '' | |
if [ -e lib/vendors ]; then | |
mkdir -p etc/OpenCL | |
ln -s lib/vendors etc/OpenCL/vendors | |
fi | |
''; |
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
Heart Whispers - use the heart on people! | |
Clockwork Collector - kill clockwork soldiers (all??) | |
Occult Carver - carve bonecharms | |
Black Market Burglar - rob a Black Market shop | |
Royal Spymaster - all journals and audiographs on ship | |
Combat: | |
The Lovers - domino on two people attacking each other | |
Sliding Marksman - headshot while sliding | |
Fatal Redirect - deflect a bullet |
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
Hi, | |
I am writing to enquire as to whether we will be reimbursed for travel expenses incurred during SR2016. I emailed my receipts and bank details this address ([email protected]) shortly after the competition, and well before the stated deadline of 14th May 2016. I have not yet received a reply to this email, and a number of other volunteers I have spoken to also reported that they did not hear back from their reimbursement requests either. | |
This issue has also had the effect of deterring volunteers from mentoring in SR2017, as they are unsure whether they will be left out of pocket or not. | |
Could you please clarify the situation, and confirm whether reimbursement for mentoring and/or competition travel expenses will occur for SR2017? | |
Regards, | |
Kier Davis |
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
with import <nixpkgs> {}; | |
stdenv.mkDerivation { | |
name = "my-texlive-env"; | |
buildInputs = [ | |
pkgs.texlive.combine { | |
inherit (pkgs.texlive) scheme-basic; | |
} | |
]; | |
} |