Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
Almost a complete rewrite. No functional change except it's faster.

- Ability to easily implement any quantum gate by simply giving an arbitrary unitary matrix in Gates.h
- Performance speedup using a single thread
- Some proper linear algebra primitives using template metaprogramming
- Abseil-cpp dependency for flat_hash_map
- Ability to compile the simulator with an set maximum number of qubits - in the future this will
be using templates as well to switch data structures based on the input quantum circuit

- Quantum state is stored as a sparse array implemented using a flat_hash_map from Abseil-cpp
- C++20 in place of C++14,
- Code style: camel case

- OpenMP and multithreading.
- SSE, AVX and other intrinsics.
  • Loading branch information
pablolh committed Jan 20, 2023
1 parent a2b7d7b commit a50b696
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,30 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [ 0.5.5 ] - [ 2023-01-12 ]
## [ 0.6.0 ] - [ 2023-01-19 ]

Almost a complete rewrite. No functional change except it's faster.

### Added

- Ability to easily implement any quantum gate by simply giving an arbitrary unitary matrix in Gates.h
- Performance speedup using a single thread
- Some proper linear algebra primitives using template metaprogramming
- Abseil-cpp dependency for flat_hash_map
- Ability to compile the simulator with an set maximum number of qubits - in the future this will
be using templates as well to switch data structures based on the input quantum circuit

### Changed

- Quantum state is stored as a sparse array implemented using a flat_hash_map from Abseil-cpp
- C++20 in place of C++14,
- Code style: camel case

### Removed
- OpenMP and multithreading.
- SSE, AVX and other intrinsics.

- ## [ 0.5.5 ] - [ 2023-01-12 ]

### Added

Expand Down
2 changes: 1 addition & 1 deletion include/qx/Version.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef QX_VERSION
#define QX_VERSION "0.5.5"
#define QX_VERSION "0.6.0"
#define QX_RELEASE_YEAR "2023"
#endif

0 comments on commit a50b696

Please sign in to comment.