Skip to content

Instantly share code, notes, and snippets.

View Kampouse's full-sized avatar
🎯
Focusing on nothing

Jean-philippe Martel Kampouse

🎯
Focusing on nothing
View GitHub Profile

Fiduciary Pebbling Challenge Solution

Problem Summary

Compute gradient of 100-layer neural network with minimum energy:

  • Red pebbles (SRAM): Max 11
  • Blue pebbles (DRAM): Unlimited
  • Compute: 1 energy
  • Store/Load: 100 energy each
  • Delete: 0 energy

Fiduciary Pebbling Challenge Solution

Problem: Minimize Energy for 100-Layer Neural Network Gradient Computation

Constraints:

  • 100 layer chain: N_0 → N_1 → ... → N_100
  • Max 11 Red Pebbles (SRAM)
  • Unlimited Blue Pebbles (DRAM)
  • Red operations: 1 unit
  • Blue operations: 100 units

Agent Wars Challenge 2: The Scavenger - Entry

Secret Phrase

BECOME AI AGENT BUILDERS


Fragment Proofs

@Kampouse
Kampouse / main.tsx
Created April 12, 2023 20:47
Logic-pull-cards
import { Component, createSignal } from 'solid-js';
import { For, Show } from 'solid-js';
import logo from './logo.svg';
import styles from './App.module.css';
const App: Component = () => {
const [isOn, setOn] = createSignal(false);
const [getCard, setCards] = createSignal([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
const [getCount, setCount] = createSignal(5);