-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMANIFEST.toml
18 lines (17 loc) · 897 Bytes
/
MANIFEST.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Order to enqueue kernels in and what kernel config files to assign to each instance
Stages = [
{name = 'scharr3_char', args=['input', 'output'], range = {ref_arg = 'input'}},
]
# hard-coded entries corresponding to program input
# this is a list of names that are to be associated with the hard-coded host inputs
# and are assumed to correspond to the first n entries of the ArgTracker where n is
# how many entries appear here.
# DO NOT MODIFY IF YOU AREN'T MODIFYING THE MAIN PROGRAM
HCInputArgs = [
'input',
]
# Master list of all kernel args by name used for OpenCL kernels listed in stages
# user configurable entries, instantiated as needed for specified stages
# Used for handling creation and checking of argument validity
[Args]
output = {type = 'image2d_t', channel_type = 'SIGNED_INT8', channel_count = 4, is_host_readable = true, size = {ref_arg = 'input', mode = '', params = []}}