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

Cmake improvements and Nix unification with existing pytket setup #1501

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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
8 changes: 7 additions & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
@@ -74,5 +74,11 @@ jobs:
if: github.event_name != 'schedule'
run: |
PKGPATH=`./rootpath tket.json tket`
cd ${PKGPATH}/bin && valgrind --error-exitcode=1 ./test-tket
echo "Package path: ${PKGPATH}"
echo "Contents"
find $PKGPATH
echo "Changing to bin directory"
cd ${PKGPATH}/bin
find
valgrind --error-exitcode=1 ./test-tket
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -27,9 +27,10 @@
};
devShells = {
default = pkgs.mkShell { buildInputs = [ pkgs.tket pkgs.pytket ]; };
conan = pkgs.mkShell { buildInputs = with pkgs; [ conan cmake ninja gcc python3 ccache ]; };
};
checks = {
tket-tests = pkgs.run-tket-tests;
tket-tests = pkgs.tket;
pytket-tests = pkgs.pytket;
};
});
2 changes: 1 addition & 1 deletion libs/tktokenswap/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -70,7 +70,7 @@ target_include_directories(tktokenswap PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include/tktokenswap>)
target_link_libraries(tktokenswap PRIVATE tklog::tklog)
target_link_libraries(tktokenswap PUBLIC tkassert::tkassert)
target_link_libraries(tktokenswap PRIVATE tkrng::tkrng)
target_link_libraries(tktokenswap PUBLIC tkrng::tkrng)
target_link_libraries(tktokenswap PRIVATE Boost::headers)

IF(APPLE)
6 changes: 3 additions & 3 deletions libs/tktokenswap/include/tktokenswap/BestFullTsa.hpp
Original file line number Diff line number Diff line change
@@ -14,9 +14,9 @@

#pragma once

#include "HybridTsa.hpp"
#include "SwapListOptimiser.hpp"
#include "SwapListTableOptimiser.hpp"
#include "tktokenswap/HybridTsa.hpp"
#include "tktokenswap/SwapListOptimiser.hpp"
#include "tktokenswap/SwapListTableOptimiser.hpp"

namespace tket {

Original file line number Diff line number Diff line change
@@ -16,8 +16,8 @@

#include <set>

#include "CyclesGrowthManager.hpp"
#include "PartialTsaInterface.hpp"
#include "tktokenswap/CyclesGrowthManager.hpp"
#include "tktokenswap/PartialTsaInterface.hpp"

namespace tket {
namespace tsa_internal {
4 changes: 2 additions & 2 deletions libs/tktokenswap/include/tktokenswap/CyclesPartialTsa.hpp
Original file line number Diff line number Diff line change
@@ -14,8 +14,8 @@

#pragma once

#include "CyclesCandidateManager.hpp"
#include "PartialTsaInterface.hpp"
#include "tktokenswap/CyclesCandidateManager.hpp"
#include "tktokenswap/PartialTsaInterface.hpp"

namespace tket {
namespace tsa_internal {
2 changes: 1 addition & 1 deletion libs/tktokenswap/include/tktokenswap/DistanceFunctions.hpp
Original file line number Diff line number Diff line change
@@ -18,8 +18,8 @@
#include <set>
#include <stdexcept>

#include "VertexMappingFunctions.hpp"
#include "tktokenswap/DistancesInterface.hpp"
#include "tktokenswap/VertexMappingFunctions.hpp"

namespace tket {
namespace tsa_internal {
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@

#pragma once

#include "CanonicalRelabelling.hpp"
#include "tktokenswap/CanonicalRelabelling.hpp"

namespace tket {
namespace tsa_internal {
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
#include <map>
#include <vector>

#include "SwapConversion.hpp"
#include "tktokenswap/SwapConversion.hpp"

namespace tket {
namespace tsa_internal {
4 changes: 2 additions & 2 deletions libs/tktokenswap/include/tktokenswap/HybridTsa.hpp
Original file line number Diff line number Diff line change
@@ -14,8 +14,8 @@

#pragma once

#include "CyclesPartialTsa.hpp"
#include "TrivialTSA.hpp"
#include "tktokenswap/CyclesPartialTsa.hpp"
#include "tktokenswap/TrivialTSA.hpp"

namespace tket {
namespace tsa_internal {
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
#include <set>
#include <vector>

#include "ExactMappingLookup.hpp"
#include "tktokenswap/ExactMappingLookup.hpp"

namespace tket {
namespace tsa_internal {
8 changes: 4 additions & 4 deletions libs/tktokenswap/include/tktokenswap/PartialTsaInterface.hpp
Original file line number Diff line number Diff line change
@@ -14,10 +14,10 @@

#pragma once

#include "DistancesInterface.hpp"
#include "NeighboursInterface.hpp"
#include "RiverFlowPathFinder.hpp"
#include "VertexMappingFunctions.hpp"
#include "tktokenswap/DistancesInterface.hpp"
#include "tktokenswap/NeighboursInterface.hpp"
#include "tktokenswap/RiverFlowPathFinder.hpp"
#include "tktokenswap/VertexMappingFunctions.hpp"

namespace tket {
namespace tsa_internal {
4 changes: 2 additions & 2 deletions libs/tktokenswap/include/tktokenswap/RiverFlowPathFinder.hpp
Original file line number Diff line number Diff line change
@@ -19,8 +19,8 @@
#include <optional>
#include <tkrng/RNG.hpp>

#include "DistancesInterface.hpp"
#include "NeighboursInterface.hpp"
#include "tktokenswap/DistancesInterface.hpp"
#include "tktokenswap/NeighboursInterface.hpp"

namespace tket {
namespace tsa_internal {
2 changes: 1 addition & 1 deletion libs/tktokenswap/include/tktokenswap/SwapListOptimiser.hpp
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@

#pragma once

#include "DynamicTokenTracker.hpp"
#include "tktokenswap/DynamicTokenTracker.hpp"

namespace tket {
namespace tsa_internal {
Original file line number Diff line number Diff line change
@@ -19,9 +19,9 @@
#include <set>
#include <vector>

#include "PartialMappingLookup.hpp"
#include "VertexMapResizing.hpp"
#include "tktokenswap/PartialMappingLookup.hpp"
#include "tktokenswap/SwapFunctions.hpp"
#include "tktokenswap/VertexMapResizing.hpp"

namespace tket {
namespace tsa_internal {
Original file line number Diff line number Diff line change
@@ -17,10 +17,10 @@

#include <set>

#include "PartialMappingLookup.hpp"
#include "SwapListSegmentOptimiser.hpp"
#include "VertexMapResizing.hpp"
#include "tktokenswap/PartialMappingLookup.hpp"
#include "tktokenswap/SwapListOptimiser.hpp"
#include "tktokenswap/SwapListSegmentOptimiser.hpp"
#include "tktokenswap/VertexMapResizing.hpp"

/// TODO: The swap table optimiser currently tries to optimise many segments;
/// solving ~2300 problems with Best TSA takes ~20 seconds, most of which
2 changes: 1 addition & 1 deletion libs/tktokenswap/include/tktokenswap/TrivialTSA.hpp
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@

#include <set>

#include "PartialTsaInterface.hpp"
#include "tktokenswap/PartialTsaInterface.hpp"

namespace tket {
namespace tsa_internal {
2 changes: 1 addition & 1 deletion libs/tktokenswap/include/tktokenswap/VectorListHybrid.hpp
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@
#include <sstream>
#include <tkassert/Assert.hpp>

#include "VectorListHybridSkeleton.hpp"
#include "tktokenswap/VectorListHybridSkeleton.hpp"

namespace tket {

Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@
#include <optional>
#include <utility>

#include "SwapFunctions.hpp"
#include "tktokenswap/SwapFunctions.hpp"

namespace tket {

2 changes: 1 addition & 1 deletion libs/tktokenswap/include/tktokenswap/VertexSwapResult.hpp
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@
#include <optional>
#include <utility>

#include "VertexMappingFunctions.hpp"
#include "tktokenswap/VertexMappingFunctions.hpp"

namespace tket {
namespace tsa_internal {
4 changes: 2 additions & 2 deletions libs/tktokenswap/src/CyclesCandidateManager.cpp
Original file line number Diff line number Diff line change
@@ -12,14 +12,14 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "CyclesCandidateManager.hpp"
#include "tktokenswap/CyclesCandidateManager.hpp"

#include <algorithm>
#include <boost/functional/hash.hpp>
#include <stdexcept>
#include <tkassert/Assert.hpp>

#include "VertexSwapResult.hpp"
#include "tktokenswap/VertexSwapResult.hpp"

using std::vector;

2 changes: 1 addition & 1 deletion libs/tktokenswap/src/CyclesGrowthManager.cpp
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "CyclesGrowthManager.hpp"
#include "tktokenswap/CyclesGrowthManager.hpp"

#include <stdexcept>
#include <tkassert/Assert.hpp>
2 changes: 1 addition & 1 deletion libs/tktokenswap/src/CyclesPartialTsa.cpp
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "CyclesPartialTsa.hpp"
#include "tktokenswap/CyclesPartialTsa.hpp"

#include <tkassert/Assert.hpp>

2 changes: 1 addition & 1 deletion libs/tktokenswap/src/CyclicShiftCostEstimate.hpp
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@

#include <limits>

#include "DistancesInterface.hpp"
#include "tktokenswap/DistancesInterface.hpp"

namespace tket {
namespace tsa_internal {
2 changes: 1 addition & 1 deletion libs/tktokenswap/src/DistancesInterface.cpp
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "DistancesInterface.hpp"
#include "tktokenswap/DistancesInterface.hpp"

using std::vector;

2 changes: 1 addition & 1 deletion libs/tktokenswap/src/DynamicTokenTracker.cpp
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "DynamicTokenTracker.hpp"
#include "tktokenswap/DynamicTokenTracker.hpp"

namespace tket {
namespace tsa_internal {
2 changes: 1 addition & 1 deletion libs/tktokenswap/src/HybridTsa.cpp
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "HybridTsa.hpp"
#include "tktokenswap/HybridTsa.hpp"

#include <tkassert/Assert.hpp>

2 changes: 1 addition & 1 deletion libs/tktokenswap/src/NeighboursInterface.cpp
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "NeighboursInterface.hpp"
#include "tktokenswap/NeighboursInterface.hpp"

#include <stdexcept>

2 changes: 1 addition & 1 deletion libs/tktokenswap/src/PartialTsaInterface.cpp
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "PartialTsaInterface.hpp"
#include "tktokenswap/PartialTsaInterface.hpp"

namespace tket {
namespace tsa_internal {
4 changes: 2 additions & 2 deletions libs/tktokenswap/src/RiverFlowPathFinder.cpp
Original file line number Diff line number Diff line change
@@ -12,13 +12,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "RiverFlowPathFinder.hpp"
#include "tktokenswap/RiverFlowPathFinder.hpp"

#include <sstream>
#include <stdexcept>
#include <tkassert/Assert.hpp>

#include "SwapFunctions.hpp"
#include "tktokenswap/SwapFunctions.hpp"

using std::vector;

4 changes: 2 additions & 2 deletions libs/tktokenswap/src/SwapListOptimiser.cpp
Original file line number Diff line number Diff line change
@@ -12,11 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "SwapListOptimiser.hpp"
#include "tktokenswap/SwapListOptimiser.hpp"

#include <tkassert/Assert.hpp>

#include "VertexSwapResult.hpp"
#include "tktokenswap/VertexSwapResult.hpp"

namespace tket {
namespace tsa_internal {
2 changes: 1 addition & 1 deletion libs/tktokenswap/src/TableLookup/VertexMapResizing.hpp
Original file line number Diff line number Diff line change
@@ -19,8 +19,8 @@
#include <set>
#include <vector>

#include "../VertexMappingFunctions.hpp"
#include "tktokenswap/NeighboursInterface.hpp"
#include "tktokenswap/VertexMappingFunctions.hpp"

namespace tket {
namespace tsa_internal {
2 changes: 1 addition & 1 deletion libs/tktokenswap/src/TrivialTSA.cpp
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "TrivialTSA.hpp"
#include "tktokenswap/TrivialTSA.hpp"

#include <sstream>
#include <stdexcept>
2 changes: 1 addition & 1 deletion libs/tktokenswap/src/VectorListHybridSkeleton.cpp
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "VectorListHybridSkeleton.hpp"
#include "tktokenswap/VectorListHybridSkeleton.hpp"

#include <limits>
#include <sstream>
6 changes: 3 additions & 3 deletions libs/tkwsm/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -68,9 +68,9 @@ ENDIF()
target_include_directories(tkwsm PUBLIC
$<INSTALL_INTERFACE:include/tkwsm>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include/tkwsm>)
target_link_libraries(tkwsm PRIVATE tkassert::tkassert)
target_link_libraries(tkwsm PRIVATE tkrng::tkrng)
target_link_libraries(tkwsm PRIVATE Boost::headers)
target_link_libraries(tkwsm PUBLIC tkassert::tkassert)
target_link_libraries(tkwsm PUBLIC tkrng::tkrng)
target_link_libraries(tkwsm PUBLIC Boost::headers)
IF(APPLE)
target_link_libraries(tkwsm PRIVATE "-flat_namespace")
ENDIF()
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/Common/GeneralUtils.hpp
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@
#include <utility>
#include <vector>

#include "SpecialExceptions.hpp"
#include "tkwsm/Common/SpecialExceptions.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/Common/TemporaryRefactorCode.hpp
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
#include <boost/dynamic_bitset.hpp>
#include <tkassert/Assert.hpp>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
10 changes: 5 additions & 5 deletions libs/tkwsm/include/tkwsm/EndToEndWrappers/MainSolver.hpp
Original file line number Diff line number Diff line change
@@ -16,11 +16,11 @@
#include <chrono>
#include <memory>

#include "../GraphTheoretic/NeighboursData.hpp"
#include "../GraphTheoretic/VertexRelabelling.hpp"
#include "../Searching/SearchBranch.hpp"
#include "MainSolverParameters.hpp"
#include "SolutionData.hpp"
#include "tkwsm/EndToEndWrappers/MainSolverParameters.hpp"
#include "tkwsm/EndToEndWrappers/SolutionData.hpp"
#include "tkwsm/GraphTheoretic/NeighboursData.hpp"
#include "tkwsm/GraphTheoretic/VertexRelabelling.hpp"
#include "tkwsm/Searching/SearchBranch.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
#pragma once
#include <optional>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
Original file line number Diff line number Diff line change
@@ -18,8 +18,8 @@
#include <string>
#include <utility>

#include "../GraphTheoretic/NearNeighboursData.hpp"
#include "../GraphTheoretic/NeighboursData.hpp"
#include "tkwsm/GraphTheoretic/NearNeighboursData.hpp"
#include "tkwsm/GraphTheoretic/NeighboursData.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
4 changes: 2 additions & 2 deletions libs/tkwsm/include/tkwsm/EndToEndWrappers/SolutionData.hpp
Original file line number Diff line number Diff line change
@@ -15,8 +15,8 @@
#pragma once
#include <optional>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "SolutionWSM.hpp"
#include "tkwsm/EndToEndWrappers/SolutionWSM.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/EndToEndWrappers/SolutionWSM.hpp
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
#pragma once
#include <string>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
#pragma once
#include <forward_list>

#include "GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/GraphTheoretic/DerivedGraphs.hpp
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
// limitations under the License.

#pragma once
#include "DerivedGraphStructs.hpp"
#include "tkwsm/GraphTheoretic/DerivedGraphStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
// limitations under the License.

#pragma once
#include "DerivedGraphStructs.hpp"
#include "tkwsm/GraphTheoretic/DerivedGraphStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
#pragma once
#include <set>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
Original file line number Diff line number Diff line change
@@ -17,8 +17,8 @@
#include <optional>
#include <utility>

#include "FilterUtils.hpp"
#include "GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/FilterUtils.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/GraphTheoretic/NeighboursData.hpp
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
#include <optional>
#include <utility>

#include "GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
// limitations under the License.

#pragma once
#include "GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/InitPlacement/EndToEndIQP.hpp
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
#pragma once
#include <optional>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/InitPlacement/FastRandomBits.hpp
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
// limitations under the License.

#pragma once
#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
class RNG;
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/InitPlacement/InputStructs.hpp
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
#pragma once
#include <optional>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
Original file line number Diff line number Diff line change
@@ -17,10 +17,10 @@
#include <optional>
#include <tkrng/RNG.hpp>

#include "FastRandomBits.hpp"
#include "MonteCarloManager.hpp"
#include "SolutionJumper.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/InitPlacement/FastRandomBits.hpp"
#include "tkwsm/InitPlacement/MonteCarloManager.hpp"
#include "tkwsm/InitPlacement/SolutionJumper.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
6 changes: 3 additions & 3 deletions libs/tkwsm/include/tkwsm/Reducing/DerivedGraphsReducer.hpp
Original file line number Diff line number Diff line change
@@ -13,9 +13,9 @@
// limitations under the License.

#pragma once
#include "../GraphTheoretic/DerivedGraphs.hpp"
#include "../GraphTheoretic/DerivedGraphsCalculator.hpp"
#include "ReducerWrapper.hpp"
#include "tkwsm/GraphTheoretic/DerivedGraphs.hpp"
#include "tkwsm/GraphTheoretic/DerivedGraphsCalculator.hpp"
#include "tkwsm/Reducing/ReducerWrapper.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/Reducing/DistancesReducer.hpp
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
// limitations under the License.

#pragma once
#include "ReducerWrapper.hpp"
#include "tkwsm/Reducing/ReducerWrapper.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/Reducing/ReducerWrapper.hpp
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
#include <boost/dynamic_bitset.hpp>
#include <optional>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/Searching/DomainsAccessor.hpp
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
#include <optional>
#include <string>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/Searching/NodeListTraversal.hpp
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
#include <optional>
#include <string>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
4 changes: 2 additions & 2 deletions libs/tkwsm/include/tkwsm/Searching/NodesRawData.hpp
Original file line number Diff line number Diff line change
@@ -16,8 +16,8 @@
#include <boost/dynamic_bitset.hpp>
#include <string>

#include "../Common/LogicalStack.hpp"
#include "../GraphTheoretic/DomainInitialiser.hpp"
#include "tkwsm/Common/LogicalStack.hpp"
#include "tkwsm/GraphTheoretic/DomainInitialiser.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
18 changes: 9 additions & 9 deletions libs/tkwsm/include/tkwsm/Searching/SearchBranch.hpp
Original file line number Diff line number Diff line change
@@ -15,15 +15,15 @@
#pragma once
#include <memory>

#include "../GraphTheoretic/DomainInitialiser.hpp"
#include "../Reducing/DerivedGraphsReducer.hpp"
#include "../Reducing/DistancesReducer.hpp"
#include "../Reducing/HallSetReduction.hpp"
#include "../Reducing/ReducerWrapper.hpp"
#include "DomainsAccessor.hpp"
#include "NodeListTraversal.hpp"
#include "NodesRawData.hpp"
#include "WeightCalculator.hpp"
#include "tkwsm/GraphTheoretic/DomainInitialiser.hpp"
#include "tkwsm/Reducing/DerivedGraphsReducer.hpp"
#include "tkwsm/Reducing/DistancesReducer.hpp"
#include "tkwsm/Reducing/HallSetReduction.hpp"
#include "tkwsm/Reducing/ReducerWrapper.hpp"
#include "tkwsm/Searching/DomainsAccessor.hpp"
#include "tkwsm/Searching/NodeListTraversal.hpp"
#include "tkwsm/Searching/NodesRawData.hpp"
#include "tkwsm/Searching/WeightCalculator.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/Searching/ValueOrdering.hpp
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
#pragma once
#include <set>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
class RNG;
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/Searching/VariableOrdering.hpp
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
#pragma once
#include <optional>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
class RNG;
2 changes: 1 addition & 1 deletion libs/tkwsm/include/tkwsm/Searching/WeightCalculator.hpp
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
#include <optional>
#include <set>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
4 changes: 2 additions & 2 deletions libs/tkwsm/include/tkwsm/WeightPruning/WeightChecker.hpp
Original file line number Diff line number Diff line change
@@ -16,8 +16,8 @@
#include <memory>
#include <optional>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "WeightNogoodDetectorManager.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/WeightPruning/WeightNogoodDetectorManager.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
#pragma once
#include <optional>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
#include <map>
#include <set>

#include "../GraphTheoretic/GeneralStructs.hpp"
#include "tkwsm/GraphTheoretic/GeneralStructs.hpp"

namespace tket {
namespace WeightedSubgraphMonomorphism {
7 changes: 0 additions & 7 deletions nix-support/includes-fixup.nix

This file was deleted.

6 changes: 0 additions & 6 deletions nix-support/libs.nix
Original file line number Diff line number Diff line change
@@ -1,45 +1,39 @@
self: super:
let
default-flags = [ "-DBUILD_SHARED_LIBS=ON" "-DINSTALL_NAME_DIR=OFF" ];
postFixup = import ./includes-fixup.nix;
in {
tklog = super.stdenv.mkDerivation {
name = "tklog";
src = ../libs/tklog;
nativeBuildInputs = [ super.cmake ];
cmakeFlags = default-flags;
inherit postFixup;
};
tkrng = super.stdenv.mkDerivation {
name = "tkrng";
src = ../libs/tkrng;
nativeBuildInputs = [ super.cmake ];
cmakeFlags = default-flags;
inherit postFixup;
};
tkassert = super.stdenv.mkDerivation {
name = "tkassert";
src = ../libs/tkassert;
nativeBuildInputs = [ super.cmake ];
buildInputs = [ self.tklog ];
cmakeFlags = default-flags;
inherit postFixup;
};
tktokenswap = super.stdenv.mkDerivation {
name = "tktokenswap";
src = ../libs/tktokenswap;
nativeBuildInputs = [ super.cmake super.boost ];
buildInputs = [ self.tklog self.tkassert self.tkrng ];
cmakeFlags = default-flags;
inherit postFixup;
};
tkwsm = super.stdenv.mkDerivation {
name = "tkwsm";
src = ../libs/tkwsm;
nativeBuildInputs = [ super.cmake super.boost ];
buildInputs = [ self.tklog self.tkassert self.tkrng ];
cmakeFlags = default-flags;
inherit postFixup;
};
tklibs = [ self.tklog self.tkrng self.tkassert self.tktokenswap self.tkwsm ];
}
78 changes: 31 additions & 47 deletions nix-support/pytket.nix
Original file line number Diff line number Diff line change
@@ -17,30 +17,23 @@ let
};
});
in {
binders = super.stdenv.mkDerivation {
name = "binders";
nativeBuildInputs = [
pytket = super.python3.pkgs.buildPythonPackage {
pname = "pytket";
inherit version;
src = ../pytket;
nativeBuildInputs = with super.python3.pkgs; [
setuptools
super.cmake
super.pkg-config
super.python3Packages.pybind11
super.pybind11_json
];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
propagatedBuildInputs = [
super.tket
super.pybind11_json
];
unpackPhase = ''
cp -r ${../pytket/binders} binders;
cp ${../pytket/CMakeLists.txt} CMakeLists.txt;
'';
};
pytket = super.python3.pkgs.buildPythonPackage {
pname = "pytket";
inherit version;
propagatedBuildInputs = with super.python3.pkgs; [
self.binders
dependencies = with super.python3.pkgs; [
super.lark
super.qwasm
pybind11
graphviz
networkx
jinja2
@@ -49,35 +42,24 @@ in {
numpy
typing-extensions
];
configurePhase = "true"; # skip configure
# (by default it runs cmake, which we
# want python to manage instead)
preBuild = ''
# explicitly provide the pytket version to setup.py
# and to _version.py, as we can't rely on git version
# information in nix.
unpackPhase = ''
cp -r ${../pytket/pytket} pytket;
cp ${../pytket/package.md} package.md;
cp -r ${../schemas} schemas;
cp -r ${../pytket/mypy.ini} mypy.ini;
# The usual build depends on setuptools-scm to extract the version.
# We have already extracted the version within nix, so we can simply
# inject it into setup.py.
cat ${../pytket/setup.py} | sed 's/setup(/setup(version="${version}",/' > setup.py;
mkdir test_root;
cp -r ${../pytket/tests} test_root/tests;
# hardcode the version extracted from docs/conf.py.
chmod 755 pytket
cat ${../pytket/setup.py} \
| sed 's/setup(/setup(version="${version}",/' \
> setup.py;
echo '__version__ = "${version}"' > pytket/_version.py;
'';
preBuild = ''
export USE_NIX=1;
'';
postFixup = ''
# these directories aren't copied by setup.py, so we do it manually
cp -r ${
../pytket/pytket/circuit/display/js
} $out/lib/python${super.python3.pythonVersion}/site-packages/pytket/circuit/display/js;
cp -r ${
../pytket/pytket/circuit/display/static
} $out/lib/python${super.python3.pythonVersion}/site-packages/pytket/circuit/display/static;
# instruct python to build with cmake instead of conan,
# and to build in a temporary directory.
export NO_CONAN=1;
export INSTALL_DIR=$(mktemp -d);
export BUILD_DIR=$(mktemp -d);
'';
checkInputs = with super.python3.pkgs; [
mypy
@@ -88,16 +70,18 @@ in {
hypothesis
docker
opt-einsum
] ++ [jsonschema-4180];
jsonschema-4180
];
checkPhase = ''
export HOME=$TMPDIR;
cp -r ${../schemas} $HOME/schemas;
# run mypy
python -m mypy --config-file=mypy.ini --no-incremental -p pytket -p test_root.tests;
python -m mypy --config-file=mypy.ini --no-incremental -p pytket -p tests;
# run tests
chmod 700 $TMPDIR/test_root/tests/qasm_test_files;
cd test_root/tests;
chmod 700 $HOME/pytket/tests/qasm_test_files;
cd tests;
python -m pytest -s .
'';
doCheck = true;
44 changes: 19 additions & 25 deletions nix-support/tket.nix
Original file line number Diff line number Diff line change
@@ -1,44 +1,38 @@
self: super:
let
postFixup = import ./includes-fixup.nix;
# only import necessary directories so that changes to unrelated
# files inside of ../tket won't trigger a rebuild
tket-without-tests = super.stdenv.mkDerivation {
src = super.stdenv.mkDerivation {
name = "tket-sources";
phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out;
cp -r ${../tket/cmake} $out/cmake;
cp -r ${../tket/include} $out/include;
cp -r ${../tket/src} $out/src;
cp -r ${../tket/CMakeLists.txt} $out/CMakeLists.txt;
cp -r ${../tket/test} $out/test;
cp -r ${../tket/proptest} $out/proptest;
cp ${../tket/CMakeLists.txt} $out/CMakeLists.txt;
'';
};
in {
tket = super.stdenv.mkDerivation {
name = "tket";
src = tket-without-tests;
nativeBuildInputs = [ super.cmake ];
propagatedBuildInputs = super.tklibs
++ [ super.boost super.symengine super.eigen super.nlohmann_json ];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" "-DINSTALL_NAME_DIR=OFF" ];
inherit postFixup;
};

tket-tests = super.stdenv.mkDerivation {
name = "tket-tests";
src = ../tket/test;
inherit src;
nativeBuildInputs = [ super.cmake super.pkg-config ];
buildInputs = [ self.tket super.catch2_3 ];
};
run-tket-tests = super.stdenv.mkDerivation {
name = "run-tket-tests";
stages = [ "build" ];
buildCommand = ''
pushd ${self.tket-tests}/bin;
mkdir -p $out;
./test-tket > $out/test_result.txt;
popd;
'';
propagatedBuildInputs = super.tklibs
++ (with super; [ boost symengine eigen nlohmann_json ]);
# TODO: add rapidcheck once nixpkgs packaging is correctly implemented.
# At current the package fails because the .pc files incorrectly reference
# the library dir rather than the dev dir.
# See https://github.com/NixOS/nixpkgs/issues/296348
buildInputs = with super; [ catch2_3 ];
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
"-DINSTALL_NAME_DIR=OFF"
"-DBUILD_TKET_TEST=ON"
"-DBUILD_TKET_PROPTEST=OFF"
];
doCheck = true;
};
}
27 changes: 1 addition & 26 deletions pytket/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -16,21 +16,7 @@ cmake_minimum_required(VERSION 3.23)
project(pytket CXX)
add_definitions(-DPYBIND11_DETAILED_ERROR_MESSAGES)

find_package(Boost CONFIG REQUIRED)
find_package(Eigen3 CONFIG REQUIRED)
find_package(tket CONFIG REQUIRED)
find_package(tklog CONFIG REQUIRED)
find_package(tkassert CONFIG REQUIRED)
find_package(tkrng CONFIG REQUIRED)
find_package(tktokenswap CONFIG REQUIRED)
find_package(tkwsm CONFIG REQUIRED)
find_package(tkassert CONFIG REQUIRED)
find_package(gmp CONFIG)
if (NOT gmp_FOUND)
find_package(PkgConfig REQUIRED)
pkg_search_module(gmp REQUIRED IMPORTED_TARGET gmp)
endif()
find_package(SymEngine CONFIG REQUIRED)
find_package(pybind11 CONFIG REQUIRED)
find_package(pybind11_json CONFIG REQUIRED)

@@ -71,22 +57,11 @@ endif()
if (NOT TARGET pybind11_json::pybind11_json)
add_library(pybind11_json::pybind11_json ALIAS pybind11_json)
endif()
if (NOT TARGET gmp::gmp)
add_library(gmp::gmp ALIAS PkgConfig::gmp)
endif()
if (NOT TARGET symengine::symengine)
add_library(symengine::symengine ALIAS symengine)
endif()

list(APPEND lib_deps
tket::tket
tklog::tklog
tkassert::tkassert
pybind11::headers
pybind11_json::pybind11_json
Eigen3::Eigen
gmp::gmp
symengine::symengine)
pybind11_json::pybind11_json)
if (WIN32)
list(APPEND lib_deps bcrypt) # For boost::uuid
endif()
2 changes: 1 addition & 1 deletion pytket/conanfile.py
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ def package(self):
cmake.install()

def requirements(self):
self.requires("tket/1.3.17@tket/stable")
self.requires("tket/1.3.18@tket/stable")
self.requires("tklog/0.3.3@tket/stable")
self.requires("tkrng/0.3.3@tket/stable")
self.requires("tkassert/0.3.4@tket/stable")
64 changes: 29 additions & 35 deletions pytket/setup.py
Original file line number Diff line number Diff line change
@@ -57,12 +57,28 @@ def run(self):
os.path.dirname(self.get_ext_fullpath(self.extensions[0].name))
)
extsource = self.extensions[0].sourcedir
build_dir = os.path.join(extsource, "build")
shutil.rmtree(build_dir, ignore_errors=True)
os.mkdir(build_dir)
build_dir = os.getenv("BUILD_DIR") or os.path.join(extsource, "build")
if os.path.exists(build_dir):
# Remove contents of build_dir, but not the directory itself.
# This avoids issues with a BUILD_DIR being provided but with
# permission settings that prevent it being removed.
for f in os.listdir(build_dir):
fpath = os.path.join(build_dir, f)
if os.path.isdir(fpath):
shutil.rmtree(fpath)
else:
os.remove(fpath)
else:
os.mkdir(build_dir)

install_dir = os.getenv("INSTALL_DIR")
subprocess.run(
["cmake", f"-DCMAKE_INSTALL_PREFIX={install_dir}", os.pardir], cwd=build_dir
[
"cmake",
f"-DCMAKE_INSTALL_PREFIX={install_dir}",
os.path.abspath(os.curdir),
],
cwd=build_dir,
)
subprocess.run(
[
@@ -75,9 +91,8 @@ def run(self):
)
subprocess.run(["cmake", "--install", os.curdir], cwd=build_dir)
lib_folder = os.path.join(install_dir, "lib")
lib_names = ["libtklog.so", "libtket.so"]
ext_suffix = get_config_var("EXT_SUFFIX")
lib_names.extend(f"{binder}{ext_suffix}" for binder in binders)
lib_names = [f"{binder}{ext_suffix}" for binder in binders]
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You have removed libtket.so from lib_names here, is that intentional?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is - the binders are already linked to tket.

So if I run nix build .#pytket and it outputs, say, /nix/store/afanh2nndhwmnjx393pwry7di3gs0gf8-python3.12-pytket-1.30.0, I get:

find /nix/store/afanh2nndhwmnjx393pwry7di3gs0gf8-python3.12-pytket-1.30.0/ -name "*.so" | xargs ldd
/nix/store/afanh2nndhwmnjx393pwry7di3gs0gf8-python3.12-pytket-1.30.0/lib/python3.12/site-packages/pytket/_tket/architecture.cpython-312-x86_64-linux-gnu.so:
	linux-vdso.so.1 (0x00007ffebeffa000)
	libtket.so => /nix/store/r83mq87lf2jyzdzhb25v9kslqf1ccdgk-tket/lib/libtket.so (0x00007fef3c200000)
	libsymengine.so.0.11 => /nix/store/fww6693dlgs4fxcfcaib2md8w7sfp6r2-symengine-0.12.0/lib/libsymengine.so.0.11 (0x00007fef3ba00000)
	libflint.so.17 => /nix/store/bpryc1gw9a15nmdk3036jmdgqh4y0ix0-flint-2.9.0/lib/libflint.so.17 (0x00007fef3ae00000)
	libmpc.so.3 => /nix/store/s2cb7sfy1l5d7j1c0dryk4j4spq5adp4-libmpc-1.3.1/lib/libmpc.so.3 (0x00007fef3cc12000)
	libmpfr.so.6 => /nix/store/2wrknbiwjkrhywgfzc2wjd273bghv0xb-mpfr-4.2.1/lib/libmpfr.so.6 (0x00007fef3cb5a000)
	libgmp.so.10 => /nix/store/ip431mx66mcnbbzfphfzvr1h61vddc2q-gmp-with-cxx-6.3.0/lib/libgmp.so.10 (0x00007fef3cab5000)
	libtktokenswap.so => /nix/store/ylz20wz0q4pi8k9fcvaap867ddyhm1r2-tktokenswap/lib/libtktokenswap.so (0x00007fef3c185000)
	libtkassert.so => /nix/store/hjm2nfl2k8s6i78a7a080r42pld268f0-tkassert/lib/libtkassert.so (0x00007fef3caaf000)
	libtklog.so => /nix/store/vqgqfqwkhbbvgibiifhfi0ppwayf6wrw-tklog/lib/libtklog.so (0x00007fef3caa6000)
	libtkrng.so => /nix/store/l2k1id5xa9x6ps6difknkkfyx2fdgd4q-tkrng/lib/libtkrng.so (0x00007fef3caa0000)
	libstdc++.so.6 => /nix/store/c6r62m84hywf4i6qq1h28f13zv38yqyp-gcc-13.3.0-lib/lib/libstdc++.so.6 (0x00007fef3aa00000)
	libm.so.6 => /nix/store/m71p7f0nymb19yn1dascklyya2i96jfw-glibc-2.39-52/lib/libm.so.6 (0x00007fef3c09f000)
	libgcc_s.so.1 => /nix/store/c6r62m84hywf4i6qq1h28f13zv38yqyp-gcc-13.3.0-lib/lib/libgcc_s.so.1 (0x00007fef3c07a000)
	libc.so.6 => /nix/store/m71p7f0nymb19yn1dascklyya2i96jfw-glibc-2.39-52/lib/libc.so.6 (0x00007fef3a809000)
	libtkwsm.so => /nix/store/8s49jk9li42z583k2qgiyrpzvkdd7bh5-tkwsm/lib/libtkwsm.so (0x00007fef3b978000)
	libopenblas.so.0 => /nix/store/iy0g9kndccxpknqk8flsvzhqzjni26rd-openblas-0.3.27/lib/libopenblas.so.0 (0x00007fef38da8000)
	libntl.so.44 => /nix/store/sm8zhkpz3rrdldfknm4w5zz994lvsrfg-ntl-11.5.1/lib/libntl.so.44 (0x00007fef38a00000)
	libpthread.so.0 => /nix/store/m71p7f0nymb19yn1dascklyya2i96jfw-glibc-2.39-52/lib/libpthread.so.0 (0x00007fef3ca97000)
	/nix/store/dbcw19dshdwnxdv5q2g6wldj6syyvq7l-glibc-2.39-52/lib64/ld-linux-x86-64.so.2 (0x00007fef3cca4000)
	libgfortran.so.5 => /nix/store/wmina0mbakp0vkv4amkha9sv8zj9bkx2-gfortran-13.3.0-lib/lib/libgfortran.so.5 (0x00007fef38600000)
	libgomp.so.1 => /nix/store/c6r62m84hywf4i6qq1h28f13zv38yqyp-gcc-13.3.0-lib/lib/libgomp.so.1 (0x00007fef3c02d000)
	libgf2x.so.3 => /nix/store/bx8mvbs9w946xs5csfh5ijl43ggd98p8-gf2x-1.3.0/lib/libgf2x.so.3 (0x00007fef3b95c000)
	libdl.so.2 => /nix/store/m71p7f0nymb19yn1dascklyya2i96jfw-glibc-2.39-52/lib/libdl.so.2 (0x00007fef3ca90000)

I believe this to be sufficient, as the cmake builds of pytket are working on nix, ubuntu and macos.

The windows conan build, however, is failing, and and I'm scratching my head over that as the changes to the conan build are trivial.

# TODO make the above generic
os.makedirs(extdir, exist_ok=True)
for lib_name in lib_names:
@@ -128,38 +143,11 @@ def run(self):
shutil.copy(libpath, extdir)


class NixBuild(build_ext):
def run(self):
self.check_extensions_list(self.extensions)
extdir = os.path.abspath(
os.path.dirname(self.get_ext_fullpath(self.extensions[0].name))
)
if os.path.exists(extdir):
shutil.rmtree(extdir)
os.makedirs(extdir)

nix_ldflags = os.environ["NIX_LDFLAGS"].split()
build_inputs = os.environ["propagatedBuildInputs"].split()

binders = [f"{l}/lib" for l in build_inputs if "-binders" in l]
for binder in binders:
for lib in os.listdir(binder):
libpath = os.path.join(binder, lib)
if not os.path.isdir(libpath):
shutil.copy(libpath, extdir)

for interface_file in os.listdir("pytket/_tket"):
if interface_file.endswith(".pyi") or interface_file.endswith(".py"):
shutil.copy(os.path.join("pytket/_tket", interface_file), extdir)


plat_name = os.getenv("WHEEL_PLAT_NAME")


def get_build_ext():
if os.getenv("USE_NIX"):
return NixBuild
elif os.getenv("NO_CONAN"):
if os.getenv("NO_CONAN"):
return CMakeBuild
else:
return ConanBuild
@@ -228,6 +216,12 @@ def finalize_options(self):
"Topic :: Scientific/Engineering",
],
include_package_data=True,
package_data={"pytket": ["py.typed"]},
package_data={
"pytket": [
"py.typed",
"circuit/display/js/*.js",
"circuit/display/static/*.html",
]
},
zip_safe=False,
)
48 changes: 32 additions & 16 deletions tket/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -15,9 +15,17 @@
cmake_minimum_required(VERSION 3.23)
project(tket CXX)

cmake_policy(SET CMP0022 NEW)


list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake)

find_package(Boost CONFIG REQUIRED)
find_package(gmp CONFIG)
if (NOT gmp_FOUND)
find_package(PkgConfig REQUIRED)
pkg_search_module(gmp REQUIRED IMPORTED_TARGET gmp)
endif()
find_package(SymEngine CONFIG REQUIRED)
find_package(Eigen3 CONFIG REQUIRED)
find_package(nlohmann_json CONFIG REQUIRED)
@@ -31,6 +39,8 @@ set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_EXTENSIONS OFF)

option(INSTALL_NAME_DIR "Set the install name dir for the library to @loader_path for Apple targets" ON)
option(BUILD_TKET_TEST "Build the test suite" OFF)
option(BUILD_TKET_PROPTEST "Build the property test suite" OFF)

if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release)
@@ -104,19 +114,23 @@ ENDIF()
if (NOT TARGET symengine::symengine)
add_library(symengine::symengine ALIAS symengine)
endif()
if (NOT TARGET gmp::gmp)
add_library(gmp::gmp ALIAS PkgConfig::gmp)
endif()

target_include_directories(tket PUBLIC
$<INSTALL_INTERFACE:include/tket>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include/tket>)
target_link_libraries(tket PRIVATE Boost::headers)
target_link_libraries(tket PRIVATE symengine::symengine)
target_link_libraries(tket PRIVATE Eigen3::Eigen)
target_link_libraries(tket PRIVATE nlohmann_json::nlohmann_json)
target_link_libraries(tket PRIVATE tklog::tklog)
target_link_libraries(tket PRIVATE tkassert::tkassert)
target_link_libraries(tket PRIVATE tkrng::tkrng)
target_link_libraries(tket PRIVATE tktokenswap::tktokenswap)
target_link_libraries(tket PUBLIC Boost::headers)
target_link_libraries(tket PUBLIC symengine::symengine)
target_link_libraries(tket PUBLIC Eigen3::Eigen)
target_link_libraries(tket PUBLIC nlohmann_json::nlohmann_json)
target_link_libraries(tket PUBLIC tklog::tklog)
target_link_libraries(tket PUBLIC tkassert::tkassert)
target_link_libraries(tket PUBLIC tkrng::tkrng)
target_link_libraries(tket PUBLIC tktokenswap::tktokenswap)
target_link_libraries(tket PRIVATE tkwsm::tkwsm)
target_link_libraries(tket PRIVATE gmp::gmp)
IF(APPLE)
target_link_libraries(tket PRIVATE "-flat_namespace")
ENDIF()
@@ -432,6 +446,9 @@ target_sources(tket
include/tket/Predicates/Predicates.hpp
)

if (BUILD_TKET_TEST OR BUILD_TKET_PROPTEST)
enable_testing()
endif()
if (BUILD_TKET_TEST)
add_subdirectory(test)
endif()
@@ -443,16 +460,14 @@ include(GNUInstallDirs)
set(INSTALL_CONFIGDIR ${CMAKE_INSTALL_LIBDIR}/cmake/tket)

install(TARGETS tket
EXPORT tket-targets
FILE_SET HEADERS)

if(MSVC)
install(TARGETS tket
EXPORT tket-targets
FILE_SET HEADERS
RUNTIME DESTINATION bin
RUNTIME DESTINATION lib
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib)
endif()
LIBRARY DESTINATION lib
INCLUDES DESTINATION include
)

install(EXPORT tket-targets
FILE tketTargets.cmake
@@ -462,7 +477,8 @@ install(EXPORT tket-targets

include(CMakePackageConfigHelpers)

configure_package_config_file(${CMAKE_CURRENT_LIST_DIR}/cmake/tketConfig.cmake.in
configure_package_config_file(
${CMAKE_CURRENT_LIST_DIR}/cmake/tketConfig.cmake.in
${CMAKE_CURRENT_BINARY_DIR}/tketConfig.cmake
INSTALL_DESTINATION ${INSTALL_CONFIGDIR}
)
18 changes: 17 additions & 1 deletion tket/cmake/tketConfig.cmake.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,24 @@
@PACKAGE_INIT@

get_filename_component(TKET_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
include(CMakeFindDependencyMacro)

find_package(Boost CONFIG REQUIRED)
find_package(gmp CONFIG)
if (NOT gmp_FOUND)
find_package(PkgConfig REQUIRED)
pkg_search_module(gmp REQUIRED IMPORTED_TARGET gmp)
endif()
find_package(SymEngine CONFIG REQUIRED)
find_package(Eigen3 CONFIG REQUIRED)
find_package(nlohmann_json CONFIG REQUIRED)
find_package(tklog CONFIG REQUIRED)
find_package(tkassert CONFIG REQUIRED)
find_package(tkrng CONFIG REQUIRED)
find_package(tktokenswap CONFIG REQUIRED)

if(NOT TARGET tket::tket)
include("${TKET_CMAKE_DIR}/tketTargets.cmake")
endif()

set(TKET_lIBRARIES tket::tket)
set(TKET_LIBRARIES tket::tket)
12 changes: 3 additions & 9 deletions tket/conanfile.py
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@

class TketConan(ConanFile):
name = "tket"
version = "1.3.17"
version = "1.3.18"
package_type = "library"
license = "Apache 2"
homepage = "https://github.com/CQCL/tket"
@@ -76,12 +76,6 @@ def generate(self):
tc.variables["PROFILE_COVERAGE"] = self.options.profile_coverage
if self.build_test():
tc.variables["BUILD_TKET_TEST"] = True
architectures_dir = os.path.join(
self.source_folder, "test/src/test_architectures"
)
copy(self, "*.json", architectures_dir, self.build_folder)
circuits_dir = os.path.join(self.source_folder, "test/src/test_circuits")
copy(self, "*.json", circuits_dir, self.build_folder)
if self.build_proptest():
tc.variables["BUILD_TKET_PROPTEST"] = True
tc.generate()
@@ -97,9 +91,9 @@ def build(self):
cmake.configure()
cmake.build()
if self.build_test():
self.run(os.path.join(self.test_folder(), "test-tket"))
self.run("./test-tket", cwd=self.test_folder())
if self.build_proptest():
self.run(os.path.join(self.proptest_folder(), "proptest-tket"))
self.run(f"./proptest-tket", cwd=self.proptest_folder())

def package(self):
cmake = CMake(self)
29 changes: 2 additions & 27 deletions tket/proptest/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -15,20 +15,6 @@
cmake_minimum_required(VERSION 3.23)
project(proptest-tket CXX)

find_package(Boost CONFIG REQUIRED)
find_package(gmp CONFIG)
if (NOT gmp_FOUND)
find_package(PkgConfig REQUIRED)
pkg_search_module(gmp REQUIRED IMPORTED_TARGET gmp)
endif()
find_package(SymEngine CONFIG REQUIRED)
find_package(Eigen3 CONFIG REQUIRED)
find_package(nlohmann_json CONFIG REQUIRED)
find_package(tklog CONFIG REQUIRED)
find_package(tkassert CONFIG REQUIRED)
find_package(tkrng CONFIG REQUIRED)
find_package(tktokenswap CONFIG REQUIRED)
find_package(tkwsm CONFIG REQUIRED)
find_package(rapidcheck CONFIG REQUIRED)

set(CMAKE_CXX_STANDARD 20)
@@ -61,26 +47,15 @@ add_executable(proptest-tket
src/proptest.cpp
)

if (NOT TARGET gmp::gmp)
add_library(gmp::gmp ALIAS PkgConfig::gmp)
endif()
if (NOT TARGET symengine::symengine)
add_library(symengine::symengine ALIAS symengine)
endif()
if (NOT TARGET rapidcheck::rapidcheck)
add_library(rapidcheck::rapidcheck ALIAS rapidcheck)
endif()

target_link_libraries(proptest-tket PRIVATE tket)
target_link_libraries(proptest-tket PRIVATE Boost::headers)
target_link_libraries(proptest-tket PRIVATE gmp::gmp)
target_link_libraries(proptest-tket PRIVATE symengine::symengine)
target_link_libraries(proptest-tket PRIVATE Eigen3::Eigen)
target_link_libraries(proptest-tket PRIVATE tklog::tklog)
target_link_libraries(proptest-tket PRIVATE tkassert::tkassert)
target_link_libraries(proptest-tket PRIVATE nlohmann_json::nlohmann_json)
target_link_libraries(proptest-tket PRIVATE rapidcheck::rapidcheck)



install(TARGETS proptest-tket DESTINATION "."
RUNTIME DESTINATION bin
ARCHIVE DESTINATION lib
3 changes: 2 additions & 1 deletion tket/proptest/src/proptest.cpp
Original file line number Diff line number Diff line change
@@ -12,10 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include <rapidcheck.h>

#include <cmath>

#include "ComparisonFunctions.hpp"
#include "rapidcheck.h"
#include "tket/Architecture/Architecture.hpp"
#include "tket/Circuit/Circuit.hpp"
#include "tket/Circuit/Simulation/CircuitSimulator.hpp"
167 changes: 28 additions & 139 deletions tket/test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -15,21 +15,9 @@
cmake_minimum_required(VERSION 3.23)
project(test-tket CXX)

find_package(Boost CONFIG REQUIRED)
find_package(gmp CONFIG)
if (NOT gmp_FOUND)
find_package(PkgConfig REQUIRED)
pkg_search_module(gmp REQUIRED IMPORTED_TARGET gmp)
endif()
find_package(SymEngine CONFIG REQUIRED)
find_package(Eigen3 CONFIG REQUIRED)
find_package(nlohmann_json CONFIG REQUIRED)
find_package(tklog CONFIG REQUIRED)
find_package(tkassert CONFIG REQUIRED)
find_package(tkrng CONFIG REQUIRED)
find_package(tktokenswap CONFIG REQUIRED)
find_package(tkwsm CONFIG REQUIRED)
find_package(Catch2 CONFIG REQUIRED)
include(CTest)
include(Catch)

set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_EXTENSIONS OFF)
@@ -56,8 +44,8 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "(Apple)?Clang")
# remove -Wno-deprecated-declarations once https://github.com/boostorg/boost/issues/688 is resolved
endif()

add_executable(test-tket
# test utils:
FILE(GLOB_RECURSE TEST_SOURCES src/test_*.cpp)
SET(TEST_UTILS
src/tests_main.cpp
src/testutil.cpp
src/CircuitsForTesting.cpp
@@ -78,125 +66,28 @@ add_executable(test-tket
src/TokenSwapping/TestUtils/ProblemGeneration.cpp
src/TokenSwapping/TestUtils/TestStatsStructs.cpp
src/Gate/GatesData.cpp
src/Simulation/ComparisonFunctions.cpp
# test sources:
src/Utils/test_CosSinDecomposition.cpp
src/Utils/test_HelperFunctions.cpp
src/Utils/test_MatrixAnalysis.cpp
src/Graphs/test_GraphColouring.cpp
src/Graphs/test_GraphFindComponents.cpp
src/Graphs/test_GraphFindMaxClique.cpp
src/Graphs/test_GraphUtils.cpp
src/Graphs/test_DirectedGraph.cpp
src/Graphs/test_ArticulationPoints.cpp
src/Graphs/test_TreeSearch.cpp
src/TokenSwapping/test_ArchitectureMappingEndToEnd.cpp
src/TokenSwapping/test_BestTsaFixedSwapSequences.cpp
src/TokenSwapping/test_DistancesFromArchitecture.cpp
src/TokenSwapping/test_FullTsa.cpp
src/TokenSwapping/test_RiverFlowPathFinder.cpp
src/TokenSwapping/test_SwapsFromQubitMapping.cpp
src/TokenSwapping/test_VariousPartialTsa.cpp
src/Architecture/test_SubgraphMonomorphisms.cpp
src/test_PauliTensor.cpp
src/Ops/test_ClassicalOps.cpp
src/Ops/test_Expression.cpp
src/Ops/test_Ops.cpp
src/OpType/test_OpTypeFunctions.cpp
src/Passes/test_CliffordResynthesis.cpp
src/Passes/test_SynthesiseTK.cpp
src/Passes/test_SynthesiseTket.cpp
src/Gate/test_Rotation.cpp
src/Gate/test_GateUnitaryMatrix.cpp
src/Simulation/test_CircuitSimulator.cpp
src/Simulation/test_PauliExpBoxUnitaryCalculator.cpp
src/Circuit/test_Boxes.cpp
src/Circuit/test_PauliExpBoxes.cpp
src/Circuit/test_Circ.cpp
src/Circuit/test_CircPool.cpp
src/Circuit/test_Symbolic.cpp
src/Circuit/test_ThreeQubitConversion.cpp
src/Circuit/test_Multiplexor.cpp
src/Circuit/test_StatePreparation.cpp
src/Circuit/test_DiagonalBox.cpp
src/Circuit/test_ToffoliBox.cpp
src/Circuit/test_ConjugationBox.cpp
src/Circuit/test_DummyBox.cpp
src/test_UnitaryTableau.cpp
src/test_ChoiMixTableau.cpp
src/test_Diagonalisation.cpp
src/test_PhasePolynomials.cpp
src/test_PauliGraph.cpp
src/test_Architectures.cpp
src/test_ArchitectureAwareSynthesis.cpp
src/Placement/test_GraphPlacement.cpp
src/Placement/test_LinePlacement.cpp
src/Placement/test_NoiseAwarePlacement.cpp
src/Placement/test_Placement.cpp
src/Placement/test_NeighbourPlacements.cpp
src/Transformations/test_RedundancyRemoval.cpp
src/test_MappingVerification.cpp
src/test_MappingFrontier.cpp
src/test_RoutingMethod.cpp
src/test_MappingManager.cpp
src/test_LexicographicalComparison.cpp
src/test_LexiRoute.cpp
src/test_AASRoute.cpp
src/test_MultiGateReorder.cpp
src/test_BoxDecompRoutingMethod.cpp
src/test_RoutingPasses.cpp
src/test_DeviceCharacterisation.cpp
src/test_Clifford.cpp
src/test_MeasurementSetup.cpp
src/test_Partition.cpp
src/test_MeasurementReduction.cpp
src/test_PhaseGadget.cpp
src/test_Rebase.cpp
src/test_PhasedXFrontier.cpp
src/test_GlobalisePhasedX.cpp
src/test_Synthesis.cpp
src/test_TwoQubitCanonical.cpp
src/test_ControlDecomp.cpp
src/test_Combinators.cpp
src/test_Predicates.cpp
src/test_CompilerPass.cpp
src/test_ContextOpt.cpp
src/test_FrameRandomisation.cpp
src/test_Assertion.cpp
src/test_json.cpp
src/test_Path.cpp
src/test_SteinerTree.cpp
src/test_SteinerForest.cpp
src/test_wasm.cpp
src/test_RoundAngles.cpp
src/test_GreedyPauli.cpp
src/ZX/test_ZXDiagram.cpp
src/ZX/test_ZXAxioms.cpp
src/ZX/test_ZXSimp.cpp
src/ZX/test_ZXRebase.cpp
src/ZX/test_Flow.cpp
src/ZX/test_ZXConverters.cpp
src/ZX/test_ZXExtraction.cpp
)

if (NOT TARGET gmp::gmp)
add_library(gmp::gmp ALIAS PkgConfig::gmp)
endif()
if (NOT TARGET symengine::symengine)
add_library(symengine::symengine ALIAS symengine)
endif()
src/Simulation/ComparisonFunctions.cpp)

add_executable(test-tket ${TEST_UTILS} ${TEST_SOURCES})
target_link_libraries(test-tket PUBLIC tket Catch2::Catch2WithMain)

target_link_libraries(test-tket PRIVATE tket)
target_link_libraries(test-tket PRIVATE Boost::headers)
target_link_libraries(test-tket PRIVATE gmp::gmp)
target_link_libraries(test-tket PRIVATE symengine::symengine)
target_link_libraries(test-tket PRIVATE Eigen3::Eigen)
target_link_libraries(test-tket PRIVATE Catch2::Catch2WithMain)
target_link_libraries(test-tket PRIVATE tklog::tklog)
target_link_libraries(test-tket PRIVATE tkrng::tkrng)
target_link_libraries(test-tket PRIVATE tkassert::tkassert)
target_link_libraries(test-tket PRIVATE tktokenswap::tktokenswap)
target_link_libraries(test-tket PRIVATE nlohmann_json::nlohmann_json)
add_custom_target(copy-test-data-dirs ALL
COMMENT "Copying test data directories to build directory"
COMMAND ${CMAKE_COMMAND} -E make_directory
$<TARGET_FILE_DIR:test-tket>/test_circuits
COMMAND ${CMAKE_COMMAND} -E copy_directory
${CMAKE_CURRENT_SOURCE_DIR}/src/test_circuits
$<TARGET_FILE_DIR:test-tket>/test_circuits

COMMAND ${CMAKE_COMMAND} -E make_directory
$<TARGET_FILE_DIR:test-tket>/test_architectures
COMMAND ${CMAKE_COMMAND} -E copy_directory
${CMAKE_CURRENT_SOURCE_DIR}/src/test_architectures
$<TARGET_FILE_DIR:test-tket>/test_architectures
)
add_dependencies(test-tket copy-test-data-dirs)

catch_discover_tests(test-tket)

set(WITH_COVERAGE no CACHE BOOL "Link library with profiling for test coverage")
IF (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
@@ -205,11 +96,9 @@ IF (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
ENDIF()
ENDIF()

install(FILES
src/test_circuits/lexiroute_circuit.json
src/test_circuits/lexiroute_circuit_relabel_to_ancilla.json
src/test_circuits/bug777_circuit.json
src/test_architectures/ibm_montreal.json
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/src/test_circuits
DESTINATION bin)
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/src/test_architectures
DESTINATION bin)

install(TARGETS test-tket DESTINATION "."
9 changes: 5 additions & 4 deletions tket/test/src/test_LexiRoute.cpp
Original file line number Diff line number Diff line change
@@ -1626,7 +1626,7 @@ SCENARIO("Lexi relabel with partially mapped circuit") {
}

SCENARIO("Test failing case") {
std::ifstream circuit_file("lexiroute_circuit.json");
std::ifstream circuit_file("test_circuits/lexiroute_circuit.json");
nlohmann::json j = nlohmann::json::parse(circuit_file);
auto c = j.get<Circuit>();
Architecture arc(std::vector<std::pair<unsigned, unsigned>>{
@@ -2173,7 +2173,8 @@ SCENARIO(
{5, 6}, {5, 9}, {6, 8}, {7, 8}, {9, 8}, {9, 10},
{11, 3}, {11, 10}, {11, 12}, {12, 2}, {13, 1}, {13, 12}};
Architecture architecture(coupling_map);
std::ifstream circuit_file("lexiroute_circuit_relabel_to_ancilla.json");
std::ifstream circuit_file(
"test_circuits/lexiroute_circuit_relabel_to_ancilla.json");
nlohmann::json j = nlohmann::json::parse(circuit_file);
auto c = j.get<Circuit>();
std::map<Qubit, Node> p_map = {
@@ -2334,10 +2335,10 @@ SCENARIO(
}
SCENARIO("Lexi route produces incorrect bimaps") {
// segfault Github #777
std::ifstream arch_file("ibm_montreal.json");
std::ifstream arch_file("test_architectures/ibm_montreal.json");
nlohmann::json j_arch = nlohmann::json::parse(arch_file);
auto arch = j_arch.get<Architecture>();
std::ifstream circ_file("bug777_circuit.json");
std::ifstream circ_file("test_circuits/bug777_circuit.json");
nlohmann::json j_circ = nlohmann::json::parse(circ_file);
auto circ = j_circ.get<Circuit>();
std::map<Qubit, Node> p_map = {