Skip to content
Snippets Groups Projects
Commit 0399bedd authored by Mccaskey, Alex's avatar Mccaskey, Alex
Browse files

Removing Kernel.hpp

parent 617bbece
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,19 @@
#include "QasmToGraph.hpp"
BOOST_AUTO_TEST_CASE(checkConversion) {
const std::string qasm =
"qubit qreg0\nqubit qreg1\nqubit qreg2\nH qreg1\nCNOT qreg1,qreg2\nCNOT qreg0,qreg1\nH qreg0\nMeasZ qreg0\nMeasZ qreg1\nH qreg2\nCNOT qreg2,qreg1\nH qreg2\nCNOT qreg2,qreg0";
"qubit qreg0\n"
"qubit qreg1\n"
"qubit qreg2\n"
"H qreg1\n"
"CNOT qreg1,qreg2\n"
"CNOT qreg0,qreg1\n"
"H qreg0\n"
"MeasZ qreg0\n"
"MeasZ qreg1\n"
"H qreg2\n"
"CNOT qreg2,qreg1\n"
"H qreg2\n"
"CNOT qreg2,qreg0";
auto graph = xacc::quantum::QasmToGraph::getCircuitGraph(qasm);
// FIXME Need to create a graph to check against
}
......@@ -28,7 +28,7 @@
# Initial API and implementation - Alex McCaskey
#
#**********************************************************************************/
set (PACKAGE_NAME "XACC Runtime")
set (PACKAGE_NAME "XACC Core Runtime")
set (PACKAGE_DESCIPTION "The XACC Programming Framework")
set (LIBRARY_NAME xacc)
......
/***********************************************************************************
* Copyright (c) 2016, UT-Battelle
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the <organization> nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Contributors:
* Initial API and implementation - Alex McCaskey
*
**********************************************************************************/
#ifndef XACC_KERNEL_HPP_
#define XACC_KERNEL_HPP_
namespace xacc {
class Kernel {
};
}
#endif
......@@ -157,8 +157,7 @@ BOOST_AUTO_TEST_CASE(checkTeleportScaffold) {
// Build the program using Scaffold comipler
// and output the Graph Intermediate Representation
quantumProgram.build("--compiler scaffold "
"--writeIR teleport.xir");
quantumProgram.build("--compiler scaffold");
// Retrieve the created kernel. It takes a
// qubit register as input
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment