TIG-POOL
Go to file
2025-05-07 00:10:25 +01:00
.github/workflows Rework workflow to build amd64, aarch64, and ptx. 2025-05-04 00:27:49 +01:00
dist Fix typo in file name. 2024-05-31 13:32:46 +08:00
docs Add hypergraph partitioning challenge. 2025-05-06 21:11:02 +01:00
scripts Fix test_algorithm defaults. 2025-03-24 15:56:38 +08:00
tig-algorithms Add missing imports for hypergraph. 2025-05-06 21:34:39 +01:00
tig-benchmarker Update documentation for native runtime. 2025-05-06 06:51:54 +01:00
tig-binary Update documentation for native runtime. 2025-05-06 06:51:54 +01:00
tig-breakthroughs Add hypergraph partitioning challenge. 2025-05-06 21:11:02 +01:00
tig-challenges Fix inconsistent terminology. 2025-05-07 00:10:25 +01:00
tig-protocol Add cpu architecture to outputdata, and cpu/gpu to algorithm details. 2025-05-03 08:54:24 +01:00
tig-runtime Add hypergraph templates to tig-algorithms. 2025-05-06 21:26:32 +01:00
tig-structs Add cpu architecture to outputdata, and cpu/gpu to algorithm details. 2025-05-03 08:54:24 +01:00
tig-token Rewarded tokens need to be claimed. 2025-01-17 00:11:57 +00:00
tig-utils Add support for TokenLocker. Remove submit-topup and submit-deposit. 2025-01-15 00:29:37 +00:00
tig-verifier Add hypergraph templates to tig-algorithms. 2025-05-06 21:26:32 +01:00
tig-worker Update documentation for native runtime. 2025-05-06 06:51:54 +01:00
_config.yml Add jekyll config to ignore symbolic links. 2024-12-28 22:43:30 +08:00
.gitignore Move envvars to .env file. 2024-12-31 22:20:04 +08:00
Cargo.toml Split verification logic into separate crate. 2025-05-02 05:28:32 +01:00
CNAME Create CNAME 2024-05-31 15:27:55 +08:00
Dockerfile.dev Add tig-verifier to dockers. 2025-05-02 05:31:10 +01:00
Dockerfile.runtime Add tig-verifier to dockers. 2025-05-02 05:31:10 +01:00
index.html Fix typo in file name. 2024-05-31 13:32:46 +08:00
README.md Update documentation for native runtime. 2025-05-06 06:51:54 +01:00
swagger.yaml Add emissions to block details. 2025-04-15 15:27:33 +01:00

The Innovation Game

This repository contains the implementation of The Innovation Game (TIG).

Repo Contents

  • tig-algorithms - A Rust crate that hosts algorithm submissions made by Innovators in TIG
  • tig-benchmarker - Python scripts for running TIG's benchmarker in master/slave configuration
  • tig-binary - A Rust crate that wraps an algorithm from tig-algorithm for compilation into a shared object.
  • tig-breakthroughs - A folder that hosts submissions of algorithmic methods made by Innovators in TIG.
  • tig-challenges - A Rust crate that contains the implementation of TIG's challenges (computational problems adapted for proof-of-work)
  • tig-protocol - A Rust crate that contains the implementation of TIG's core protocol logic.
  • tig-runtime - A Rust crate that execute an algorithm (compiled from tig-binary) for a single nonce, generating runtime signature and fuel consumed for verification.
  • tig-structs - A Rust crate that contains the definitions of structs used throughout TIG
  • tig-token - Solidity contract for TIG's ERC20 token that is deployed on Ethereum L2 Base chain
  • tig-utils - A Rust crate that contains utility functions used throughout TIG
  • tig-verifier - A Rust crate that verifies a single solution or Merkle proof.
  • tig-worker - A Rust crate for executing a batch of instances using tig-runtime, aggregating outputs, and calculating Merkle root.

Useful Scripts

Under scripts/ folder is a bunch of useful bash scripts:

  • list_algorithms.sh
  • list_benchmark_ids.sh
  • list_challenges.sh
  • get_benchmark_data.sh
  • test_algorithm.sh
  • verify_benchmark.sh

License

See README for individual folders