Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for v1.0.1.0 #99

Merged
merged 6 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,10 @@

* Many more updates to the algorithms - see README for details

## 1.0.1.0 -- XXXX-XX-XX
## 1.0.1.0 -- 2024-08-22

* Export more functions for building custom Tensort variants

* Cleanup code and documentation
* Cleanup and improve documentation

* Cleanup code a bit
2 changes: 1 addition & 1 deletion src/Data/Tensort/Utils/Compose.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- | Module for creating Tensors from Bytes and Tensors
--
-- Functions ending in 'R' are for sorting Records when used in a recursive
-- Functions ending in "R" are for sorting Records when used in a recursive
-- Tensort variant
--
-- TODO: See if we can clean up the type conversion here
Expand Down
4 changes: 3 additions & 1 deletion src/Data/Tensort/Utils/LogNat.hs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
-- | This module provides functions for calculating the natural logarithms in
-- a way useful for creating logarithmic Bytesizes
module Data.Tensort.Utils.LogNat (getLnBytesize, getLn) where

import Data.Tensort.Utils.Types (Sortable (..))

-- | Calculate a logarithmic Bytesize from a Sortable
-- | Calculate a suitable logarithmic Bytesize from a Sortable

-- | ==== __Examples__
-- >>> getLnBytesize (SortBit [1 .. 27])
Expand Down
2 changes: 1 addition & 1 deletion src/Data/Tensort/Utils/Reduce.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- | This module provides functions to reduce a list of TensorStacks into a
-- more compact list of TensorStacks
--
-- Functions ending in 'R' are for sorting Records when used in a recursive
-- Functions ending in "R" are for sorting Records when used in a recursive
-- Tensort variant
--
-- TODO: See if we can clean up the type conversion here
Expand Down
2 changes: 1 addition & 1 deletion src/Data/Tensort/Utils/Render.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- | Module for rendering a sorted list of Bits from a list of TensorStacks
--
-- Functions ending in 'R' are for sorting Records when used in a recursive
-- Functions ending in "R" are for sorting Records when used in a recursive
-- Tensort variant
--
-- TODO: See if we can clean up the type conversion here
Expand Down
3 changes: 2 additions & 1 deletion tensort.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ name: tensort
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 1.0.0.0
version: 1.0.1.0

tested-with: GHC==9.8.2,
GHC==9.6.4,
Expand Down Expand Up @@ -154,6 +154,7 @@ executable tensort
-- Other library packages from which modules are imported.
build-depends:
base,
tensort,

-- Directories containing source files.
hs-source-dirs: app
Expand Down
Loading