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
c77d9bd8
Commit
c77d9bd8
authored
Aug 04, 2017
by
Mccaskey, Alex
Browse files
Making IRTransformation Identifiable
parent
f35602fd
Changes
8
Hide whitespace changes
Inline
Side-by-side
Doxyfile.cmake
View file @
c77d9bd8
...
...
@@ -855,8 +855,6 @@ EXCLUDE_SYMLINKS = NO
EXCLUDE_PATTERNS = */eigen/*
EXCLUDE_PATTERNS += */fire/*
EXCLUDE_PATTERNS += */rapidjson/*
EXCLUDE_PATTERNS += */boost-dll/*
EXCLUDE_PATTERNS += */cmr/*
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the
...
...
impls/simple-simulator/SimpleAccelerator.hpp
View file @
c77d9bd8
...
...
@@ -30,7 +30,6 @@
**********************************************************************************/
#ifndef QUANTUM_GATE_ACCELERATORS_SIMPLEACCELERATOR_HPP_
#define QUANTUM_GATE_ACCELERATORS_SIMPLEACCELERATOR_HPP_
#include
<boost/dll/alias.hpp>
#include
"Accelerator.hpp"
#include
"InstructionIterator.hpp"
...
...
quantum/aqc/compiler/EmbeddingAlgorithm.hpp
View file @
c77d9bd8
...
...
@@ -31,7 +31,6 @@
#ifndef QUANTUM_AQC_COMPILER_EMBEDDINGALGORITHM_HPP_
#define QUANTUM_AQC_COMPILER_EMBEDDINGALGORITHM_HPP_
#include
<boost/dll.hpp>
#include
<map>
#include
<list>
#include
<memory>
...
...
xacc
/utils/Registry.hpp
→
quantum/gate
/utils/Registry.hpp
View file @
c77d9bd8
File moved
xacc/accelerator/Accelerator.hpp
View file @
c77d9bd8
...
...
@@ -40,7 +40,6 @@
#include
"IRTransformation.hpp"
#include
"Function.hpp"
#include
"OptionsProvider.hpp"
#include
<boost/dll/alias.hpp>
#include
"Graph.hpp"
#include
"Identifiable.hpp"
...
...
xacc/compiler/Compiler.hpp
View file @
c77d9bd8
...
...
@@ -34,7 +34,6 @@
#include
<memory>
#include
<iostream>
#include
"IR.hpp"
#include
<boost/dll/alias.hpp>
#include
"Accelerator.hpp"
#include
"Identifiable.hpp"
...
...
xacc/ir/IRTransformation.hpp
View file @
c77d9bd8
...
...
@@ -32,10 +32,11 @@
#define XACC_COMPILER_IRTRANSLATION_HPP_
#include
"IR.hpp"
#include
"Identifiable.hpp"
namespace
xacc
{
class
IRTransformation
{
class
IRTransformation
:
public
Identifiable
{
public:
virtual
std
::
shared_ptr
<
IR
>
transform
(
std
::
shared_ptr
<
IR
>
ir
)
=
0
;
virtual
~
IRTransformation
()
{}
...
...
xacc/utils/ServiceRegistry.hpp
View file @
c77d9bd8
...
...
@@ -35,6 +35,7 @@
#include
"Utils.hpp"
#include
"RuntimeOptions.hpp"
#include
"Identifiable.hpp"
#include
"OptionsProvider.hpp"
#include
"xacc_config.hpp"
#include
<boost/algorithm/string.hpp>
...
...
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