Skip to content

Commit 9bcece0

Browse files
committed
Coreflow rename
1 parent 54546b3 commit 9bcece0

File tree

118 files changed

+209
-209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+209
-209
lines changed

docs/Doxyfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = CoreFlow
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 0.0.1
51+
PROJECT_NUMBER = 1.0.0
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewers a
@@ -764,7 +764,7 @@ GENERATE_TODOLIST = NO
764764
# list. This list is created by putting \test commands in the documentation.
765765
# The default value is: YES.
766766

767-
GENERATE_TESTLIST = YES
767+
GENERATE_TESTLIST = NO
768768

769769
# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug
770770
# list. This list is created by putting \bug commands in the documentation.
@@ -801,7 +801,7 @@ MAX_INITIALIZER_LINES = 30
801801
# list will mention the files that were used to generate the documentation.
802802
# The default value is: YES.
803803

804-
SHOW_USED_FILES = YES
804+
SHOW_USED_FILES = NO
805805

806806
# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
807807
# will remove the Files entry from the Quick Index and from the Folder Tree View
@@ -1463,7 +1463,7 @@ HTML_EXTRA_FILES = format/doxygen-awesome-darkmode-toggle.js \
14631463
# The default value is: AUTO_LIGHT.
14641464
# This tag requires that the tag GENERATE_HTML is set to YES.
14651465

1466-
HTML_COLORSTYLE = LIGHT
1466+
HTML_COLORSTYLE = DARK
14671467

14681468
# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
14691469
# will adjust the colors in the style sheet and background images according to
@@ -2685,7 +2685,7 @@ GROUP_GRAPHS = YES
26852685
# The default value is: NO.
26862686
# This tag requires that the tag HAVE_DOT is set to YES.
26872687

2688-
UML_LOOK = NO
2688+
UML_LOOK = YES
26892689

26902690
# If the UML_LOOK tag is enabled, the fields and methods are shown inside the
26912691
# class node. If there are many fields or methods and many nodes the graph may
@@ -2763,7 +2763,7 @@ INCLUDED_BY_GRAPH = YES
27632763
# The default value is: NO.
27642764
# This tag requires that the tag HAVE_DOT is set to YES.
27652765

2766-
CALL_GRAPH = YES
2766+
CALL_GRAPH = NO
27672767

27682768
# If the CALLER_GRAPH tag is set to YES then Doxygen will generate a caller
27692769
# dependency graph for every global function or class method.
@@ -2775,7 +2775,7 @@ CALL_GRAPH = YES
27752775
# The default value is: NO.
27762776
# This tag requires that the tag HAVE_DOT is set to YES.
27772777

2778-
CALLER_GRAPH = YES
2778+
CALLER_GRAPH = NO
27792779

27802780
# If the GRAPHICAL_HIERARCHY tag is set to YES then Doxygen will graphical
27812781
# hierarchy of all classes instead of a textual one.

docs/install.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,22 @@ The simplest way to start is with the `hello_world` example, which imports and e
3939

4040
```bash
4141
# Hello World (requires XML file)
42-
./bin/examples/corevx_cpp/hello_world graph.xml
42+
./bin/examples/hello_world graph.xml
4343
```
4444

4545
You can likewise run any of the examples in the bin directory with:
4646
```bash
4747
# AI Chatbot
48-
./bin/examples/corevx_cpp/chatbot_sample
48+
./bin/examples/chatbot_sample
4949

5050
# MNIST Classification
51-
./bin/examples/corevx_cpp/ort_classification_sample
51+
./bin/examples/ort_classification_sample
5252

5353
# Image Processing
54-
./bin/examples/corevx_cpp/blur_pipeline
54+
./bin/examples/blur_pipeline
5555

5656
# Custom Kernel
57-
./bin/examples/corevx_cpp/custom_code
57+
./bin/examples/custom_code
5858
```
5959

6060
<div class="section_buttons">

framework/include/vx_array.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/*! \brief The internal representation of a \ref vx_array
3232
* \ingroup group_int_array
3333
*/
34-
namespace corevx {
34+
namespace coreflow {
3535

3636
class Array : public Reference
3737
{
@@ -310,6 +310,6 @@ class Array : public Reference
310310
vx_uint32 offset;
311311
};
312312

313-
} // namespace corevx
313+
} // namespace coreflow
314314

315315
#endif /* VX_ARRAY_H */

framework/include/vx_context.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/*! \brief The top level context data for the entire OpenVX instance
3636
* \ingroup group_int_context
3737
*/
38-
namespace corevx {
38+
namespace coreflow {
3939

4040
class Context final : public Reference
4141
{
@@ -520,6 +520,6 @@ class Context final : public Reference
520520
const vx_char* extension;
521521
};
522522

523-
} // namespace corevx
523+
} // namespace coreflow
524524

525525
#endif /* VX_CONTEXT_H */

framework/include/vx_convolution.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
/*! \brief A convolution is a special type of matrix (MxM)
3333
* \ingroup group_int_convolution
3434
*/
35-
namespace corevx {
35+
namespace coreflow {
3636

3737
class Convolution : public Matrix
3838
{
@@ -127,6 +127,6 @@ class Convolution : public Matrix
127127
vx_uint32 scale;
128128
};
129129

130-
} // namespace corevx
130+
} // namespace coreflow
131131

132132
#endif /* VX_CONVOLUTION_H */

framework/include/vx_delay.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/*! \brief The internal representation of any delay object.
2727
* \ingroup group_int_delay
2828
*/
29-
namespace corevx {
29+
namespace coreflow {
3030

3131
class Delay : public Reference
3232
{
@@ -151,6 +151,6 @@ class Delay : public Reference
151151
vx_delay* pyr;
152152
};
153153

154-
} // namespace corevx
154+
} // namespace coreflow
155155

156156
#endif /* VX_DELAY_H */

framework/include/vx_distribution.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/*! \brief A Distribution.
3232
* \ingroup group_int_distribution
3333
*/
34-
namespace corevx {
34+
namespace coreflow {
3535

3636
class Distribution : public Reference
3737
{
@@ -181,6 +181,6 @@ class Distribution : public Reference
181181
vx_int32 offset_y;
182182
};
183183

184-
} // namespace corevx
184+
} // namespace coreflow
185185

186186
#endif /* VX_DISTRIBUTION_H */

framework/include/vx_error.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
/*! \brief The internal representation of the error object.
3131
* \ingroup group_int_error
3232
*/
33-
namespace corevx {
33+
namespace coreflow {
3434

3535
class Error : public Reference
3636
{
@@ -87,7 +87,7 @@ class Error : public Reference
8787
vx_status status;
8888
};
8989

90-
} // namespace corevx
90+
} // namespace coreflow
9191

9292
/*! \brief Matches the status code against all known error objects in the
9393
* context.

framework/include/vx_event_queue.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* @brief Internal Event Queue Object
2424
*
2525
*/
26-
namespace corevx {
26+
namespace coreflow {
2727

2828
class EventQueue
2929
{
@@ -259,4 +259,4 @@ private : bool enabled_;
259259
}
260260
};
261261

262-
} // namespace corevx
262+
} // namespace coreflow

framework/include/vx_graph.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#ifndef VX_GRAPH_H
1717
#define VX_GRAPH_H
1818

19-
#include <COREVX/execution_queue.hpp>
19+
#include <COREFLOW/execution_queue.hpp>
2020
#include <atomic>
2121

2222
#include "vx_internal.h"
@@ -34,7 +34,7 @@
3434
/*! \brief The internal representation of a graph.
3535
* \ingroup group_int_graph
3636
*/
37-
namespace corevx {
37+
namespace coreflow {
3838

3939
class Graph : public Reference
4040
{
@@ -413,6 +413,6 @@ class Graph : public Reference
413413
vx_graph_schedule_mode_type_e scheduleMode;
414414
};
415415

416-
} // namespace corevx
416+
} // namespace coreflow
417417

418418
#endif /* VX_GRAPH_H */

0 commit comments

Comments
 (0)