Skip to content

Commit

Permalink
Workshop event
Browse files Browse the repository at this point in the history
  • Loading branch information
neural-loop committed Nov 23, 2023
1 parent 5af83ce commit 8de264e
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
---
title: "Spyx Hackathon"
title: "Spyx Hackathon: Speeding up Neuromorphic Computing"
author:
- ONM
- Kade Heckel
date: 2023-12-14
start_time: 18:00
end_time: 20:00
speaker_photo: speaker.jpeg
speaker_bio: "Kade studied Computer Science and Computer Engineering at the U.S. Naval Academy. Studying in the UK as a Marshall Scholar, Kade completed an MSc in A.I. and Adaptive Systems with distinction from the University of Sussex and is currently pursuing an MPhil in Machine Learning and Machine Intelligence at the University of Cambridge. His dissertation at Sussex focused on comparing surrogate gradient and large scale neuroevolutionary algorithms for optimizing spiking neural networks."
time_zone: CEST
image: workshop-thumbnail-default.png
upcoming: true
description: "Explore the power of Spyx in a hands-on hackathon session and dive into the world of neuromorphic frameworks with an ONM talk."
description: "Explore the power of Spyx in a hands-on hackathon session and dive into the world of neuromorphic frameworks with Kade Heckel."
---

Join us on December 14th for an exciting Spyx hackathon and ONM talk! Learn how to use and contribute to Spyx, a high-performance spiking neural network library, and gain insights into the latest developments in neuromorphic frameworks. The session will cover Spyx's utilization of memory and GPU to maximize training throughput, along with discussions on the evolving landscape of neuromorphic computing.
Join us on December 14th for an exciting Spyx hackathon and ONM talk! Learn how to use and contribute to [Spyx](https://github.com/kmheckel/spyx), a high-performance spiking neural network library, and gain insights into the latest developments in neuromorphic frameworks. The session will cover Spyx's utilization of memory and GPU to maximize training throughput, along with discussions on the evolving landscape of neuromorphic computing.

Don't miss this opportunity to engage with experts, collaborate on cutting-edge projects, and explore the potential of Spyx in shaping the future of neuromorphic computing. Whether you're a seasoned developer or just curious about the field, this event promises valuable insights and hands-on experience.

Expand All @@ -25,7 +27,7 @@ Don't miss this opportunity to engage with experts, collaborate on cutting-edge
- Q&A and collaborative discussions

**Speakers:**
- L3G10N
- Kade Heckel

**Note:** The event will be hosted virtually. Stay tuned for the video link and further updates. Let's come together to push the boundaries of neuromorphic computing!

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion themes/hugoplate/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h2 class="text-xl font-semibold mb-2">Discord</h2>
</div>
<div class="mb:md-0 md:col-5 lg:col-4 mb-6">
<div class="bg-theme-light dark:bg-darkmode-theme-light rounded p-7">
<h3 class="pb-5 text-xl">Upcoming Workshop</h3>
<h3 class="pb-5 text-xl">Next Workshop</h3>
{{ $events := where .Site.RegularPages "Section" "workshops" }}
{{ $upcomingEvents := where $events "Params.upcoming" true }}
{{ $sortedUpcomingEvents := sort $upcomingEvents "Params.date" }}
Expand All @@ -67,6 +67,10 @@ <h3 class="pb-5 text-xl">Upcoming Workshop</h3>
{{ end }}
</div>
</div>
<div class="pt-2 pb-0">
<div class="bg-theme-light dark:bg-darkmode-theme-light rounded p-5">
{{ partial "components/upcoming-wide" . }}
</div></div>
</div>
</div>
</div>
Expand Down
32 changes: 32 additions & 0 deletions themes/hugoplate/layouts/partials/components/upcoming-wide.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{{ $events := where .Site.RegularPages "Params.upcoming" "eq" true }}
{{ if $events }}
{{ $sortedUpcomingEvents := slice }}
{{ range $events }}
{{ $sortedUpcomingEvents = $sortedUpcomingEvents | append . }}
{{ end }}
{{ $sortedUpcomingEvents = sort $sortedUpcomingEvents "Params.date" }}
{{ $upcomingCount := len $sortedUpcomingEvents }}
{{ $maxItems := 4 }} <!-- Define the maximum number of items to display -->
{{ $offset := 1 }} <!-- Define the offset value -->
<h3 class="text-xl pb-4">Upcoming Workshops</h3>
<div class="flex flex-wrap -mx-4"> <!-- Add flex and flex-wrap for horizontal layout -->
{{ range $index, $event := $sortedUpcomingEvents }}
{{ if and (lt $index $maxItems) (ge $index $offset) }} <!-- Check the offset condition -->
<!-- col-4 for each event -->
<div class="w-full sm:w-1/2 md:w-1/3 lg:w-1/3 xl:w-1/3 px-4 mb-1">
<div class="mb-1">
<a href="{{ $event.Permalink }}" class="flex">
{{ $event.Title }}<br>
</a>
<i class="fa-regular dark:text-gray-300 text-gray-600 fa-circle-user mr-2"></i>{{delimit .Params.author ", "}}<br>
<i class="fa-regular dark:text-gray-300 text-gray-600 fa-calendar mr-2"></i>{{ dateFormat "Jan 2, 2006" $event.Params.Date }}&nbsp;&nbsp;&nbsp;
<i class="fa-regular dark:text-gray-300 text-gray-600 fa-clock mr-2"></i>{{ partial "timeConv" $event.Params.start_time }}- {{ partial "timeConv" $event.Params.end_time}} {{ $event.Params.time_zone }}
</div>
</div>
{{ end }}
{{ end }}
</div>
{{ else }}
<!-- Handle the case where there are no upcoming events -->
<p>No upcoming events.</p>
{{ end }}

0 comments on commit 8de264e

Please sign in to comment.