forked from gtcasl/gpuocelot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure.ocelot
50 lines (49 loc) · 918 Bytes
/
configure.ocelot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
ocelot: "ocelot",
trace: {
database: "traces-ipdom/database.trace",
memoryChecker: {
enabled: true,
checkInitialization: false
},
raceDetector: {
enabled: true,
ignoreIrrelevantWrites: true
},
debugger: {
enabled: false,
kernelFilter: "_Z13scalarProdGPUPfS_S_ii",
alwaysAttach: true
},
cacheSimulator: {
enabled: false,
},
branch: false,
memory: false
},
cuda: {
implementation: CudaRuntime,
runtimeApiTrace: "trace/CudaAPI.trace"
},
executive: {
devices: [ emulated ],
asynchronousKernelLaunch: true,
port: 2011,
host: "127.0.0.1",
optimizationLevel: none,
workerThreadLimit: 1,
reconvergenceMechanism: "ipdom",
warpSize: 1
},
optimizations: {
subkernelSize: 1000,
simplifyCFG: true,
hoistSpecialValues: false
},
checkpoint: {
enabled: false,
path: "./",
prefix: "TestCudaIndirectFunctionCall_",
suffix: ".checkpoint"
}
}