Skip to content

Commit

Permalink
Merge pull request #166 from ai-models/main
Browse files Browse the repository at this point in the history
Add CARLSim
  • Loading branch information
neural-loop authored Feb 17, 2024
2 parents 65408d4 + 57009c9 commit e549399
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: CARLsim
type: neuromorphic-software
description: GPU-accelerated library for simulating large-scale spiking neural network (SNN) models with high biologically realistic synaptic dynamics.
stars_widget_url: https://img.shields.io/github/stars/UCI-CARL/CARLsim6.svg?style=social
stars: 34
website: https://uci-carl.github.io/CARLsim3/
field_of_application: Machine Learning, Hardware Interface
source_code: https://github.com/UCI-CARL/CARLsim6
license: MIT
supports_hardware: True
language: C/C++/Python
maintainer: Jeff Krichmar
---

## Overview

CARLsim is an efficient, easy-to-use, GPU-accelerated library for simulating large-scale spiking neural network (SNN) models with a high degree of biological detail. CARLsim allows execution of networks of Izhikevich spiking neurons with realistic synaptic dynamics on both generic x86 CPUs and standard off-the-shelf GPUs. The simulator provides a PyNN-like programming interface in C/C++, which allows for details and parameters to be specified at the synapse, neuron, and network level.

Some features include:
- CUDA 11 support
- CMake build system
- Neuromodulatory features
- Integration of Python LEAP
- Axonal Plasticity learning rule (release 6.1)
- a more complete STDP implementation which includes neuromodulatory mechanisms
- an automated parameter tuning interface that utilizes evolutionary algorithms to construct functional SNNs
- a test suite for functional code verification
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ <h3 class="text-lg font-semibold mb-2 sm:mb-0">
<a href="{{ .Permalink }}">{{ .Title }}</a>
</h3>
<div class="flex items-center">
<img class="inline" style="height: 30px;" src="{{ .Params.version_widget_url }}" alt="Version">
<img class="inline pl-2" style="height: 30px;" src="{{ .Params.stars_widget_url }}" alt="Stars">
{{ if .Params.version_widget_url }}
<img class="inline" style="height: 30px;" src="{{ .Params.version_widget_url }}" alt="Version">
{{ end }}
{{ if .Params.stars_widget_url }}
<img class="inline pl-2" style="height: 30px;" src="{{ .Params.stars_widget_url }}" alt="Stars">
{{ end }}
</div>
</div>
<p class="my-4">{{ .Params.description }}</p>
Expand Down

0 comments on commit e549399

Please sign in to comment.