Skip to content

Commit 5b7e74f

Browse files
committed
Updated meeting link, added flake
1 parent 94f97a3 commit 5b7e74f

File tree

3 files changed

+88
-0
lines changed

3 files changed

+88
-0
lines changed

content/english/workshops/project-phasor-kickoff-brian-anderson/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ speaker_bio: "Brian Anderson is a Neuromorphic Engineer with experience from ind
1515

1616
**Speakers**: Brian Anderson, Jamie Knight, Jens E. Pedersen, Florence Lee, Effiong Blessing, Dylan Muir
1717

18+
**Meeting link**: https://meet.google.com/xaq-bijv-smf
19+
1820
Project Phasor aims to prioritize the neuromorphic and NeuroAI issues best solved together. Anchoring the proposed efforts will be a set of neuromorphic virtual machines and a shared production-quality compiler. Development will be within an open governance body. Special focus will be on datacenter-scale training, solving heterogeneous integration, and making architecture search easy.
1921

2022
We are also exploring the creation of a joint research fund for NeuroAI and neuromorphic research using the quantum-focused Unitary Foundation as inspiration.

flake.lock

Lines changed: 61 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
description = "Development environment with Hugo, PostCSS, and Go";
3+
4+
inputs = {
5+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
6+
flake-utils.url = "github:numtide/flake-utils";
7+
};
8+
9+
outputs = { self, nixpkgs, flake-utils }:
10+
let
11+
system = "x86_64-linux";
12+
pkgs = import nixpkgs { inherit system; };
13+
in flake-utils.lib.eachDefaultSystem (system: {
14+
devShells.default = pkgs.mkShell {
15+
packages = [
16+
(pkgs.hugo.overrideAttrs (old: {
17+
version = "0.118.2";
18+
}))
19+
pkgs.nodePackages.postcss
20+
pkgs.go
21+
];
22+
};
23+
}
24+
);
25+
}

0 commit comments

Comments
 (0)