Skip to content

Commit

Permalink
NN default script dir config (+CUDA, +Loggers)
Browse files Browse the repository at this point in the history
  • Loading branch information
corepointer committed Jul 22, 2024
1 parent 21538fe commit 233e1a5
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions UserConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
"matmul_unroll_factor": 1,
"matmul_unroll_jam_factor": 4,
"matmul_num_vec_registers": 16,
"use_cuda": false,
"use_cuda": true,
"use_vectorized_exec": false,
"use_obj_ref_mgnt": true,
"cuda_fuse_any": false,
"use_mlir_codegen": false,
"vectorized_single_queue": false,
"debug_llvm": false,
"explain_kernels": false,
"explain_kernels": true,
"explain_llvm": false,
"explain_parsing": false,
"explain_parsing_simplified": false,
Expand All @@ -28,10 +28,12 @@
"numberOfThreads": -1,
"minimumTaskSize": 1,
"libdir": "{exedir}/../lib",
"daphnedsl_import_paths": {},
"force_cuda": false,
"daphnedsl_import_paths": {
"default_dirs": ["scripts/algorithms", "scripts"]
},
"force_cuda": true,
"logging": [
{ "log-level-limit": "ERROR" },
{ "log-level-limit": "DEBUG" },
{
"comment": "This configuration controls logging in the GPU compiler pass only",
"name": "compiler::cuda",
Expand All @@ -42,28 +44,35 @@
{
"comment": "general runtime CUDA debug log",
"name": "runtime::cuda",
"level": "INFO",
"level": "DEBUG",
"filename": "compiler-debug-cuda.txt",
"format": "%^[%L %n]:%$ %v"
},
{
"comment": "DAPHNE runtime logs",
"name": "runtime",
"level": "INFO",
"filename": "",
"format": "%^[%n %L]:%$ %v"
},
{
"comment": "DAPHNE compiler logs",
"name": "compiler",
"level": "INFO",
"level": "DEBUG",
"filename": "",
"format": "%^[%n %L]:%$ %v"
},
{
"comment": "DAPHNE default",
"name": "default",
"level": "INFO",
"level": "DEBUG",
"filename": "",
"format": "%^[%n %L]:%$ %v"
},
{
"comment": "DAPHNE default",
"name": "parser",
"level": "INFO",
"level": "DEBUG",
"filename": "",
"format": "%^[%n %L]:%$ %v"
}
Expand Down

0 comments on commit 233e1a5

Please sign in to comment.