-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
template: add template for new components
- Loading branch information
Showing
12 changed files
with
1,486 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Template Component | ||
|
||
The Template component showcases a possible approach to component design that | ||
varies from the more traditional monolitic approach, used in some existing | ||
components. | ||
|
||
The Template component is split into a front-end (template.c) and a back-end | ||
(vendor\_{dispatch,common,profiler}.c). The goal of this layered design is to | ||
decouple changes in the vendor libraries from the existing implementation. | ||
|
||
If, for example, the vendor library introduces a new set of interfaces and | ||
deprecates the old ones, a new vendor\_dispatch\_v2.c can be written to add | ||
support for the new vendor library interface without affecting the old vendor | ||
related code (i.e., vendor\_profiler.c). This can still be kept for backward | ||
compatibility with older vendor library versions. The dispatch layer (i.e., | ||
vendor\_dispatch.c) takes care of forwarding profiling calls to the right | ||
vendor library version. | ||
|
||
Any code that is shared between the different vendor library versions is placed | ||
in vendor\_common.c. This can contain common init routines (e.g., for the vendor | ||
runtime system initialization, like cuda or hsa), utility routines and shared | ||
data structures (e.g., device information tables). | ||
|
||
The template component emulates support for a generic vendor library to profile | ||
associated device hardware counters. The implementation is fairly detailed in | ||
stating the design decisions. For example, there is a clear separation between | ||
the front-end and the back-end with no sharing of data between the two. The | ||
front-end only takes care of doing some book keeping work (perhaps rearrange the | ||
order of events as it sees fit) and calling into the back-end functions to do | ||
actual work. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
COMPSRCS += components/template/template.c \ | ||
components/template/vendor_dispatch.c \ | ||
components/template/vendor_common.c \ | ||
components/template/vendor_profiler_v1.c | ||
|
||
COMPOBJS += template.o vendor_dispatch.o vendor_common.o vendor_profiler_v1.o | ||
|
||
CFLAGS += -g | ||
LDFLAGS += $(LDL) | ||
|
||
template.o: components/template/template.c $(HEADERS) | ||
$(CC) $(LIBCFLAGS) $(OPTFLAGS) -c $< -o $@ | ||
|
||
vendor_dispatch.o: components/template/vendor_dispatch.c $(HEADERS) | ||
$(CC) $(LIBCFLAGS) $(OPTFLAGS) -c $< -o $@ | ||
|
||
vendor_common.o: components/template/vendor_common.c $(HEADERS) | ||
$(CC) $(LIBCFLAGS) $(OPTFLAGS) -c $< -o $@ | ||
|
||
vendor_profiler_v1.o: components/template/vendor_profiler_v1.c $(HEADERS) | ||
$(CC) $(LIBCFLAGS) $(OPTFLAGS) -c $< -o $@ |
Oops, something went wrong.