Skip to content

Commit

Permalink
Release 2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
DNedic committed Mar 26, 2024
1 parent f13961a commit 7ca1769
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2.0.8
- Added a performance optimization in the [Bipartite Buffer](docs/spsc/bipartite_buf.md), where the atomic invalidate index load can be avoided after writing wraps

## 2.0.7
- Fixed an omission where the invalidate index of the [Bipartite Buffer](docs/spsc/bipartite_buf.md) was sharing a cacheline with wrapping flags, leading to unnecessary performance loss

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
cmake_minimum_required(VERSION 3.16)

project(lockfree
VERSION 2.0.7
VERSION 2.0.8
LANGUAGES CXX
)

Expand Down
2 changes: 1 addition & 1 deletion lockfree/lockfree.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.7
* Version: v2.0.8
**************************************************************/

#ifndef LOCKFREE_HPP
Expand Down
2 changes: 1 addition & 1 deletion lockfree/mpmc/priority_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.7
* Version: v2.0.8
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/mpmc/priority_queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.7
* Version: v2.0.8
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/mpmc/queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.7
* Version: v2.0.8
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/mpmc/queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.7
* Version: v2.0.8
**************************************************************/

namespace lockfree {
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/bipartite_buf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.7
* Version: v2.0.8
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/bipartite_buf_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.7
* Version: v2.0.8
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/priority_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.7
* Version: v2.0.8
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/priority_queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.7
* Version: v2.0.8
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.7
* Version: v2.0.8
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/queue_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.7
* Version: v2.0.8
**************************************************************/

namespace lockfree {
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/ring_buf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.7
* Version: v2.0.8
**************************************************************/

/************************** INCLUDE ***************************/
Expand Down
2 changes: 1 addition & 1 deletion lockfree/spsc/ring_buf_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* This file is part of lockfree
*
* Author: Djordje Nedic <[email protected]>
* Version: v2.0.7
* Version: v2.0.8
**************************************************************/

namespace lockfree {
Expand Down

0 comments on commit 7ca1769

Please sign in to comment.