Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
yshekel committed May 23, 2024
1 parent 8ac6b93 commit d677bc5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions icicle_fe/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ include(cmake/field.cmake)
include(cmake/curve.cmake)

option(BUILD_TESTS "Build unit tests" OFF)
option(BUILD_CPU_BE "Build CPU backend" ON) # TODO Yuval remove from here once seperating the backends from frontend
option(BUILD_CUDA_BE "Build CUDA backend" ON) # TODO Yuval remove from here once seperating the backends from frontend
option(BUILD_CPU_BE "Build CPU backend" ON) # TODO Yuval remove from here once separating the backends from frontend
option(BUILD_CUDA_BE "Build CUDA backend" ON) # TODO Yuval remove from here once separating the backends from frontend

# device API library
add_library(icicle_device STATIC
Expand Down
2 changes: 1 addition & 1 deletion icicle_fe/backend/cpu/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ project(icicle_cpu_backend)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED True)

# TODO Yuval: handle incdir when backend is seperated from frontend
# TODO Yuval: handle incdir when backend is separated from frontend
# TODO Yuval: dll?

# device API library
Expand Down
2 changes: 1 addition & 1 deletion icicle_fe/backend/cuda/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ find_package(CUDA REQUIRED)

include_directories(include)

# TODO Yuval: handle incdir when backend is seperated from frontend
# TODO Yuval: handle incdir when backend is separated from frontend
# TODO Yuval: dll?
add_library(icicle_cuda_device STATIC src/cuda_device_api.cu)
target_link_libraries(icicle_cuda_device PUBLIC icicle_device)
Expand Down
2 changes: 1 addition & 1 deletion icicle_fe/include/icicle/errors.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ namespace icicle {
eIcicleError rv = (api_call); \
if (rv != eIcicleError::SUCCESS) { \
throw std::runtime_error( \
"Icicle API failes with code " + std::string(getErrorString(rv)) + " in " + __FILE__ + ":" + \
"Icicle API fails with code " + std::string(getErrorString(rv)) + " in " + __FILE__ + ":" + \
std::to_string(__LINE__)); \
} \
} while (0)
Expand Down

0 comments on commit d677bc5

Please sign in to comment.