Skip to content

Commit 90fa8cf

Browse files
author
Randall C. O'Reilly
committed
v1.3.3 release
1 parent ad8a154 commit 90fa8cf

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ gopath-update:
4848
cd cmd/pi; go get -u ./...
4949

5050
# NOTE: MUST update version number here prior to running 'make release' and edit this file!
51-
VERS=v1.3.2
51+
VERS=v1.3.3
5252
PACKAGE=sims
5353
GIT_COMMIT=`git rev-parse --short HEAD`
5454
VERS_DATE=`date -u +%Y-%m-%d\ %H:%M`

README.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ This repository contains the neural network simulation models for the [CCN Textb
44

55
To run these simulations on your computer, it is easiest to download the full set of executable programs for the type of computer you are using (Apple Mac, Microsoft Windows, or Linux):
66

7-
* [ccn_sims_v1.3.2_mac-m1.zip](https://github.com/CompCogNeuro/sims/releases/download/v1.3.2/ccn_sims_v1.3.2_mac-m1.zip)
8-
+ **IMPORTANT:** You must also download and install this package for this and the `mac-intel` sims: https://sdk.lunarg.com/sdk/download/1.3.211.0/mac/vulkansdk-macos-1.3.211.0.dmg -- just accept the defaults for all prompts.
7+
* [ccn_sims_v1.3.3_mac-m1.zip](https://github.com/CompCogNeuro/sims/releases/download/v1.3.3/ccn_sims_v1.3.3_mac-m1.zip)
8+
+ **IMPORTANT:** For both of the Mac packages, you must also download and install the latest Vulkan SDK: https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.dmg -- just accept the defaults for all prompts.
9+
10+
* [ccn_sims_v1.3.3_mac-intel.zip](https://github.com/CompCogNeuro/sims/releases/download/v1.3.3/ccn_sims_v1.3.3_mac-intel.zip)
911

10-
* [ccn_sims_v1.3.2_mac-intel.zip](https://github.com/CompCogNeuro/sims/releases/download/v1.3.2/ccn_sims_v1.3.2_mac-intel.zip)
12+
* [ccn_sims_v1.3.3_windows.zip](https://github.com/CompCogNeuro/sims/releases/download/v1.3.3/ccn_sims_v1.3.3_windows.zip)
1113

12-
* [ccn_sims_v1.3.2_windows.zip](https://github.com/CompCogNeuro/sims/releases/download/v1.3.2/ccn_sims_v1.3.2_windows.zip)
13-
14-
* [ccn_sims_v1.3.2_linux.tar.gz](https://github.com/CompCogNeuro/sims/releases/download/v1.3.2/ccn_sims_v1.3.2_linux.tar.gz)
14+
* [ccn_sims_v1.3.3_linux.tar.gz](https://github.com/CompCogNeuro/sims/releases/download/v1.3.3/ccn_sims_v1.3.3_linux.tar.gz)
1515

1616
Alternatively, you can use the [Python](#python) version -- see instructions at that link for how to install.
1717

@@ -41,11 +41,13 @@ The even older [C++ emergent (cemer)](https://github.com/emer/cemer) sims projec
4141

4242
# Status
4343

44-
* **9/15/2022**: Version 1.3.2 release: updated to new NetView with raster view and separate weight recording.
44+
* **Feb 15, 2023**: Version 1.3.3 release: updated to improved Vulkan driver selection in latest GoGi.
45+
46+
* **Sept 15, 2022**: Version 1.3.2 release: updated to new NetView with raster view and separate weight recording.
4547

46-
* **9/3/2021**: Version 1.3.1 release: bug fixes, deep leabra version of sg, python works on windows.
48+
* **Sept 9, 2021**: Version 1.3.1 release: bug fixes, deep leabra version of sg, python works on windows.
4749

48-
* **11/23/2020**: Version 1.2.2 release: full set of Python versions and the pvlv model.
50+
* **Nov 23, 2020**: Version 1.2.2 release: full set of Python versions and the pvlv model.
4951

5052
* See https://github.com/CompCogNeuro/sims/releases for full history
5153

version.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
package sims
44

55
const (
6-
Version = "v1.3.2"
7-
GitCommit = "2bd286a" // the commit JUST BEFORE the release
8-
VersionDate = "2022-09-15 08:44" // UTC
6+
Version = "v1.3.3"
7+
GitCommit = "ad8a154" // the commit JUST BEFORE the release
8+
VersionDate = "2023-02-15 11:24" // UTC
99
)

0 commit comments

Comments
 (0)