Skip to content

Commit 59ef0ab

Browse files
committed
path to output file from compile has changed. it no longer seems to create the src directory.
1 parent 87f8a11 commit 59ef0ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DirectProgramming/DPC++/ParallelPatterns/dpc_reduce/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -ltbb -lsycl")
1919
add_executable (dpc_reduce src/main.cpp)
2020

2121
add_custom_target (run
22-
COMMAND CL_CONFIG_CPU_FORCE_PRIVATE_MEM_SIZE=16MB dpc_reduce
22+
COMMAND CL_CONFIG_CPU_FORCE_PRIVATE_MEM_SIZE=16MB ./dpc_reduce
2323
WORKING_DIRECTORY ${CMAKE_PROJECT_DIR}
2424
)

DirectProgramming/DPC++/ParallelPatterns/dpc_reduce/sample.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"cd build",
2121
"cmake ..",
2222
"make",
23-
"CL_CONFIG_CPU_FORCE_PRIVATE_MEM_SIZE=16MB ./src/dpc_reduce"
23+
"CL_CONFIG_CPU_FORCE_PRIVATE_MEM_SIZE=16MB ./dpc_reduce"
2424
]
2525
}
2626
]

0 commit comments

Comments
 (0)