-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Parser is now capable of just over 200 MB/sec from disk and 240 MB/sec from memory on an Intel Core i7-8550U CPU
- Loading branch information
1 parent
b5b4a72
commit d52f177
Showing
7 changed files
with
238 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
add_library(csv STATIC "") | ||
|
||
target_sources(csv | ||
PRIVATE | ||
csv_reader.cpp | ||
csv_reader_iterator.cpp | ||
csv_row.cpp | ||
csv_stat.cpp | ||
csv_utility.cpp | ||
data_type.cpp | ||
giant_string_buffer.cpp | ||
) | ||
|
||
set_target_properties(csv PROPERTIES LINKER_LANGUAGE CXX) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
add_executable(csv_info ${CMAKE_CURRENT_LIST_DIR}/csv_info.cpp) | ||
target_link_libraries(csv_info csv) | ||
|
||
add_executable(csv_bench ${CMAKE_CURRENT_LIST_DIR}/csv_bench.cpp) | ||
target_link_libraries(csv_bench csv) | ||
|
||
add_executable(csv_guess_bench ${CMAKE_CURRENT_LIST_DIR}/csv_guess_bench.cpp) | ||
target_link_libraries(csv_guess_bench csv) | ||
|
||
add_executable(csv_stats ${CMAKE_CURRENT_LIST_DIR}/csv_stats.cpp) | ||
target_link_libraries(csv_stats csv) | ||
|
||
add_executable(csv_generator ${CMAKE_CURRENT_LIST_DIR}/csv_generator.cpp) | ||
target_link_libraries(csv_generator csv) | ||
|
||
add_executable(data_type_bench ${CMAKE_CURRENT_LIST_DIR}/data_type_bench.cpp) | ||
target_link_libraries(data_type_bench csv) |
Oops, something went wrong.