-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature] CDR structures serialization (#257)
* [feature] CDR structures serialization * Test performance * Transport tunning * Use pointer for sample info * Revert "Use pointer for sample info" This reverts commit 982911b. * Updated dotnet version * Updated latency performance test * Register instance CDR * RTI register instances * Prepare for debug * Added [SuppressGCTransition] * Changed to CallConvSuppressGCTransition * Adjusted transport config * Ensure Release build * Fixed CXX flags * Use CXX 17 * Add optimization for msvc * -DCMAKE_BUILD_TYPE=Release * Added -DCMAKE_BUILD_TYPE=Release * Ensure Release when building * Refactor cmake file * Increased buffers size * Allow Debug builds for Windows OS * Added ToCDR and FromCDR methods * Complie with CXX 14 * Refactor Benchmark performance test * Restore/Build before publish benchmark test * Commented performance test to ensure the cache * Added LD_LIBRARY_PATH to the unix perf test * Use bash shell * Do not run RTI benchmark (no license) * Use sudo user for the perf test * Activate all performance tests * added option -E to sudo calls * Use sudo env * Added env variable in the sudo call * Use pwsh for windows scripts * Build sequentially * Removed ToolExe for windows * Do not use inprocess * append CMAKE_CXX_FLAGS_RELEASE * Use /MD for libraries * Refactored cxx flags * Use InProcessEmitToolchain * Added lib folders to the path * Implemented Nested struct * Escape paths * set path on script * Implemented sequences of structs * Implemented struct array * Implemented structs multi-array * Fixed alignment * Execute full test in windows * Added --project parameter to dotnet run * Only execute once in windows too * Added continue-on-error: true to latency tests
- Loading branch information
Showing
47 changed files
with
1,536 additions
and
297 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
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cmake_minimum_required(VERSION 3.19.1) | ||
cmake_minimum_required(VERSION 3.19.2) | ||
|
||
project(Native) | ||
|
||
|
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
Oops, something went wrong.