From d1bd40f72d988e590f0d4ded94abb9d26db2ceeb Mon Sep 17 00:00:00 2001 From: Matthew Wells <76452933+mattheww95@users.noreply.github.com> Date: Wed, 28 Aug 2024 13:44:18 -0500 Subject: [PATCH] Dev (#5) * updated todos * fixed typo * Bst (#2) * started optimizing matrix writes * added assest * updated write queue structure * updated queue data type * created write queue for outputs * issue with full matrix being written * did not change anything but the program worked * formatted code and removed comments * removed dead code * removed dead code * Distribute threads (#3) * updated todos * removed dead code * updated todos * updated tests * updated test workflow * updated test code * updated thread distribution * updated thread distribution * took liniter suggestions * updated bin resizing, need to work on characteristics of recalculation of bin sizes * threads are now distributed at run time * updated cli and fixed linting errors * bumped version * fixed case for single sample inputs * updated CI go version * added missing test files * bumped docker file go version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f757617..3f088ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM golang:1.20 AS build-stage +FROM golang:1.22 AS build-stage WORKDIR /app @@ -15,4 +15,4 @@ RUN CGO_ENABLED=0 GOOS=linux go install # Run the tests in the container FROM build-stage AS run-test-stage -RUN go test -v ./... \ No newline at end of file +RUN go test -v ./...