aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils/converter_benchmark.cpp
Commit message (Collapse)AuthorAgeFilesLines
* examples: Fix some minor compiler warningsMartin Braun2018-02-191-2/+2
| | | | All warnings reported by MSVC. Mostly related to narrowing conversions.
* uhd: Update license headersMartin Braun2018-02-191-1/+2
| | | | | | | All copyright is now attributed to "Ettus Research, a National Instruments company". SPDX headers were also updated to latest version 3.0.
* Move all license headers to SPDX format.Martin Braun2017-12-221-12/+1
|
* convert: Add sc12-sc16 convertersTom Tsou2017-07-181-0/+24
| | | | | | | | | | | | | | | | | Create missing sc12-sc16 and sc16-sc12 type converters. To avoid replicating the full sc12 converter class object, overload the converter calls with C++11 std::enable_if metafunctions. When used with std::is_floating and std::is_integral templates, this allow a single template interface with compile time function selection and static type checking. Note the below std::enable_if interface is confusing, but quite effective in this case. typename enable_if<is_floating_point<type>::value>::type* = NULL Fixes: #966 Related: #967, #1721
* uhd: Replaced many lexical_cast with appropriate C++11 equivalentsMartin Braun2017-06-291-0/+1
|
* uhd: replace BOOST_FOREACH with C++11 range-based for loopAndrej Rode2017-02-101-3/+3
| | | | | Note: This is the first commit that uses for-range, and range-based for-loops are now usable for UHD development.
* utils: tests: cast RAND_MAX to double before divisionAndrej Rode2017-01-121-2/+2
|
* fixup! Remove all boost:: namespace prefix for uint32_t, int32_t etc. ↵Martin Braun2016-11-151-17/+17
| | | | | | (fixed-width types) Now also removes the namespaces in the utils/ directory.
* Updated code to work for new minimum dependenciesNicholas Corgan2016-03-211-1/+2
| | | | | * Removed code referencing now-unsupported versions of Boost * Added <stdint.h> includes where needed
* utils: Fixed converter benchmark build fail on older compilersMartin Braun2015-10-201-0/+1
|
* tools: Added converter benchmark toolMartin Braun2015-10-191-0/+432