Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ORNL Quantum Computing Institute
xacc
Commits
7afc9a2f
Commit
7afc9a2f
authored
Sep 04, 2019
by
Mccaskey, Alex
Browse files
moving XACC.hpp to xacc.hpp, updated licenses and docs in xacc/
Signed-off-by:
Alex McCaskey
<
mccaskeyaj@ornl.gov
>
parent
a94f2019
Pipeline
#69987
passed with stage
in 4 minutes and 31 seconds
Changes
105
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
python/compiler/pyxasm_compiler.cpp
View file @
7afc9a2f
#include
"IRProvider.hpp"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"xacc_service.hpp"
#include
"pyxasmLexer.h"
...
...
python/compiler/pyxasm_listener.cpp
View file @
7afc9a2f
#include
"IR.hpp"
#include
"IRProvider.hpp"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"xacc_service.hpp"
#include
"expression_parsing_util.hpp"
...
...
python/compiler/tests/PyXASMCompilerTester.cpp
View file @
7afc9a2f
#include
"gtest/gtest.h"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"xacc_service.hpp"
#include
"Circuit.hpp"
...
...
python/plugin_generator/templates/compiler/compiler/{compiler_class_name}.cpp
View file @
7afc9a2f
#include
"{compiler_class_name}.hpp"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"IRProvider.hpp"
namespace
xacc
{{
...
...
python/plugin_generator/templates/compiler/tests/{compiler_class_name}Tester.cpp
View file @
7afc9a2f
#include
<gtest/gtest.h>
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"{compiler_class_name}.hpp"
using
namespace
xacc
;
...
...
python/plugin_generator/templates/gate_instruction/tests/{inst_class_name}Tester.cpp
View file @
7afc9a2f
#include
<gtest/gtest.h>
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"{inst_class_name}.hpp"
using
namespace
xacc
;
...
...
python/plugin_generator/templates/irtransformation/tests/{irt_class_name}Tester.cpp
View file @
7afc9a2f
#include
<gtest/gtest.h>
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"{irt_class_name}.hpp"
using
namespace
xacc
;
...
...
python/xacc-py.cpp
View file @
7afc9a2f
...
...
@@ -11,7 +11,7 @@
* Alexander J. McCaskey - initial API and implementation
*******************************************************************************/
#include
"CompositeInstruction.hpp"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"heterogeneous.hpp"
#include
"xacc_service.hpp"
...
...
quantum/annealing/compiler/default/DefaultParameterSetter.cpp
View file @
7afc9a2f
...
...
@@ -11,7 +11,7 @@
* Alexander J. McCaskey - initial API and implementation
*******************************************************************************/
#include
"DefaultParameterSetter.hpp"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
namespace
xacc
{
namespace
quantum
{
...
...
quantum/annealing/ir/AnnealingProgram.hpp
View file @
7afc9a2f
...
...
@@ -15,7 +15,7 @@
#include
"CompositeInstruction.hpp"
#include
"DWQMI.hpp"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"expression_parsing_util.hpp"
namespace
xacc
{
...
...
quantum/examples/qasm/deuteron.cpp
View file @
7afc9a2f
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"Optimizer.hpp"
#include
"PauliOperator.hpp"
#include
"xacc_service.hpp"
...
...
quantum/examples/qasm/deuteron_vqe_algo.cpp
View file @
7afc9a2f
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"Optimizer.hpp"
#include
"PauliOperator.hpp"
#include
"xacc_service.hpp"
...
...
quantum/gate/ir/tests/GateTester.cpp
View file @
7afc9a2f
...
...
@@ -2,7 +2,7 @@
#include
<stdexcept>
#include
"CommonGates.hpp"
#include
"Circuit.hpp"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
using
namespace
xacc
::
quantum
;
TEST
(
GateTester
,
checkBasicGatesAndCircuits
)
{
...
...
quantum/gate/utils/tests/AllGateVisitorTester.cpp
View file @
7afc9a2f
...
...
@@ -12,7 +12,7 @@
*******************************************************************************/
#include
<gtest/gtest.h>
#include
"AllGateVisitorTester.hpp"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"Circuit.hpp"
using
namespace
xacc
::
quantum
;
...
...
quantum/gate/utils/tests/IRToGraphVisitorTester.cpp
View file @
7afc9a2f
...
...
@@ -15,7 +15,7 @@
#include
"IRToGraphVisitor.hpp"
#include
"CommonGates.hpp"
#include
"InstructionIterator.hpp"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
using
namespace
xacc
::
quantum
;
...
...
quantum/gate/utils/tests/JsonVisitorTester.cpp
View file @
7afc9a2f
...
...
@@ -14,7 +14,7 @@
#include
"Circuit.hpp"
#include
"JsonVisitor.hpp"
#include
"CommonGates.hpp"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#define RAPIDJSON_HAS_STDSTRING 1
#include
"rapidjson/prettywriter.h"
using
namespace
rapidjson
;
...
...
quantum/observable/fermion/tests/FermionOperatorTester.cpp
View file @
7afc9a2f
...
...
@@ -30,7 +30,7 @@
**********************************************************************************/
#include
<gtest/gtest.h>
#include
"FermionOperator.hpp"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"IRProvider.hpp"
#include
"xacc_service.hpp"
...
...
quantum/observable/pauli/PauliOperator.cpp
View file @
7afc9a2f
...
...
@@ -3,7 +3,7 @@
#include
<regex>
#include
<set>
#include
<iostream>
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"xacc_service.hpp"
#include
<Eigen/Core>
...
...
quantum/observable/pauli/tests/PauliOperatorTester.cpp
View file @
7afc9a2f
...
...
@@ -30,7 +30,7 @@
**********************************************************************************/
#include
<gtest/gtest.h>
#include
"PauliOperator.hpp"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
"IRProvider.hpp"
#include
<Eigen/Dense>
#include
"xacc_service.hpp"
...
...
quantum/observable/transforms/tests/JWTester.cpp
View file @
7afc9a2f
#include
<gtest/gtest.h>
#include
"JW.hpp"
#include
"
XACC
.hpp"
#include
"
xacc
.hpp"
#include
<memory>
#include
<regex>
#include
"FermionOperator.hpp"
...
...
Prev
1
2
3
4
5
6
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment