2011-06-15 19:23:58 +00:00
|
|
|
//
|
2016-03-17 06:30:11 +00:00
|
|
|
// Copyright 2011-2015 Ettus Research LLC
|
2011-06-15 19:23:58 +00:00
|
|
|
//
|
2017-12-22 17:45:24 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2011-06-15 19:23:58 +00:00
|
|
|
//
|
|
|
|
|
|
2017-04-18 23:46:44 +00:00
|
|
|
#include <uhd/utils/thread.hpp>
|
2012-04-13 18:50:39 +00:00
|
|
|
#include <uhd/convert.hpp>
|
2011-06-15 19:23:58 +00:00
|
|
|
#include <uhd/utils/safe_main.hpp>
|
|
|
|
|
#include <uhd/usrp/multi_usrp.hpp>
|
|
|
|
|
#include <boost/program_options.hpp>
|
|
|
|
|
#include <boost/format.hpp>
|
|
|
|
|
#include <boost/thread/thread.hpp>
|
2013-08-26 20:51:30 +00:00
|
|
|
#include <boost/algorithm/string.hpp>
|
2016-03-17 06:30:11 +00:00
|
|
|
//#include <boost/atomic.hpp>
|
2011-06-15 19:23:58 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
#include <complex>
|
2012-10-18 22:33:07 +00:00
|
|
|
#include <cstdlib>
|
2011-06-15 19:23:58 +00:00
|
|
|
|
|
|
|
|
namespace po = boost::program_options;
|
|
|
|
|
|
2016-05-17 17:15:29 +00:00
|
|
|
const double CLOCK_TIMEOUT = 1000; // 1000mS timeout for external clock locking
|
|
|
|
|
const double INIT_DELAY = 0.05; // 50mS initial delay before transmit
|
2016-03-17 06:30:11 +00:00
|
|
|
//typedef boost::atomic<bool> atomic_bool;
|
|
|
|
|
// We'll fake atomic bools for now, for more backward compat.
|
|
|
|
|
// This is just an example, after all.
|
|
|
|
|
typedef bool atomic_bool;
|
|
|
|
|
|
2011-06-17 05:31:36 +00:00
|
|
|
/***********************************************************************
|
|
|
|
|
* Test result variables
|
|
|
|
|
**********************************************************************/
|
2011-06-15 19:23:58 +00:00
|
|
|
unsigned long long num_overflows = 0;
|
|
|
|
|
unsigned long long num_underflows = 0;
|
|
|
|
|
unsigned long long num_rx_samps = 0;
|
|
|
|
|
unsigned long long num_tx_samps = 0;
|
2011-06-15 20:51:28 +00:00
|
|
|
unsigned long long num_dropped_samps = 0;
|
2011-06-17 05:31:36 +00:00
|
|
|
unsigned long long num_seq_errors = 0;
|
2016-07-22 18:45:17 +00:00
|
|
|
unsigned long long num_late_commands = 0;
|
2016-03-19 01:10:49 +00:00
|
|
|
unsigned long long num_timeouts = 0;
|
2011-06-15 19:23:58 +00:00
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* Benchmark RX Rate
|
|
|
|
|
**********************************************************************/
|
2014-10-27 15:31:31 +00:00
|
|
|
void benchmark_rx_rate(
|
|
|
|
|
uhd::usrp::multi_usrp::sptr usrp,
|
|
|
|
|
const std::string &rx_cpu,
|
|
|
|
|
uhd::rx_streamer::sptr rx_stream,
|
2016-03-17 06:30:11 +00:00
|
|
|
bool random_nsamps,
|
|
|
|
|
atomic_bool& burst_timer_elapsed
|
2014-10-27 15:31:31 +00:00
|
|
|
) {
|
2011-06-15 19:23:58 +00:00
|
|
|
uhd::set_thread_priority_safe();
|
|
|
|
|
|
|
|
|
|
//print pre-test summary
|
|
|
|
|
std::cout << boost::format(
|
2013-07-15 22:44:42 +00:00
|
|
|
"Testing receive rate %f Msps on %u channels"
|
|
|
|
|
) % (usrp->get_rx_rate()/1e6) % rx_stream->get_num_channels() << std::endl;
|
2011-06-15 19:23:58 +00:00
|
|
|
|
|
|
|
|
//setup variables and allocate buffer
|
|
|
|
|
uhd::rx_metadata_t md;
|
2011-10-05 18:59:27 +00:00
|
|
|
const size_t max_samps_per_packet = rx_stream->get_max_num_samps();
|
2012-04-13 18:50:39 +00:00
|
|
|
std::vector<char> buff(max_samps_per_packet*uhd::convert::get_bytes_per_item(rx_cpu));
|
|
|
|
|
std::vector<void *> buffs;
|
2013-07-15 22:44:42 +00:00
|
|
|
for (size_t ch = 0; ch < rx_stream->get_num_channels(); ch++)
|
2012-04-13 18:50:39 +00:00
|
|
|
buffs.push_back(&buff.front()); //same buffer for each channel
|
2011-06-15 20:51:28 +00:00
|
|
|
bool had_an_overflow = false;
|
|
|
|
|
uhd::time_spec_t last_time;
|
|
|
|
|
const double rate = usrp->get_rx_rate();
|
2011-06-15 19:23:58 +00:00
|
|
|
|
2012-04-13 18:50:39 +00:00
|
|
|
uhd::stream_cmd_t cmd(uhd::stream_cmd_t::STREAM_MODE_START_CONTINUOUS);
|
2016-03-17 06:30:11 +00:00
|
|
|
cmd.time_spec = usrp->get_time_now() + uhd::time_spec_t(INIT_DELAY);
|
2012-04-13 18:50:39 +00:00
|
|
|
cmd.stream_now = (buffs.size() == 1);
|
2013-07-15 22:44:42 +00:00
|
|
|
rx_stream->issue_stream_cmd(cmd);
|
2014-02-04 19:04:07 +00:00
|
|
|
|
2016-03-17 06:30:11 +00:00
|
|
|
const float burst_pkt_time = std::max(0.100, (2 * max_samps_per_packet/rate));
|
|
|
|
|
float recv_timeout = burst_pkt_time + INIT_DELAY;
|
|
|
|
|
|
2016-07-19 21:45:11 +00:00
|
|
|
bool stop_called = false;
|
2016-03-17 06:30:11 +00:00
|
|
|
while (true) {
|
2016-07-19 21:45:11 +00:00
|
|
|
//if (burst_timer_elapsed.load(boost::memory_order_relaxed) and not stop_called) {
|
|
|
|
|
if (burst_timer_elapsed and not stop_called) {
|
2016-03-17 06:30:11 +00:00
|
|
|
rx_stream->issue_stream_cmd(uhd::stream_cmd_t::STREAM_MODE_STOP_CONTINUOUS);
|
2016-07-19 21:45:11 +00:00
|
|
|
stop_called = true;
|
2016-03-17 06:30:11 +00:00
|
|
|
}
|
2014-10-27 15:31:31 +00:00
|
|
|
if (random_nsamps) {
|
|
|
|
|
cmd.num_samps = rand() % max_samps_per_packet;
|
|
|
|
|
rx_stream->issue_stream_cmd(cmd);
|
|
|
|
|
}
|
2014-02-04 19:04:07 +00:00
|
|
|
try {
|
2016-03-17 06:30:11 +00:00
|
|
|
num_rx_samps += rx_stream->recv(buffs, max_samps_per_packet, md, recv_timeout)*rx_stream->get_num_channels();
|
|
|
|
|
recv_timeout = burst_pkt_time;
|
2014-02-04 19:04:07 +00:00
|
|
|
}
|
2016-02-09 22:17:43 +00:00
|
|
|
catch (uhd::io_error &e) {
|
|
|
|
|
std::cerr << "Caught an IO exception. " << std::endl;
|
|
|
|
|
std::cerr << e.what() << std::endl;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2011-06-15 19:23:58 +00:00
|
|
|
|
|
|
|
|
//handle the error codes
|
|
|
|
|
switch(md.error_code){
|
|
|
|
|
case uhd::rx_metadata_t::ERROR_CODE_NONE:
|
2011-06-15 20:51:28 +00:00
|
|
|
if (had_an_overflow){
|
|
|
|
|
had_an_overflow = false;
|
2013-08-21 02:19:49 +00:00
|
|
|
num_dropped_samps += (md.time_spec - last_time).to_ticks(rate);
|
2011-06-15 20:51:28 +00:00
|
|
|
}
|
2016-07-19 21:45:11 +00:00
|
|
|
if ((burst_timer_elapsed or stop_called) and md.end_of_burst)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2011-06-15 19:23:58 +00:00
|
|
|
break;
|
|
|
|
|
|
2014-02-04 19:04:07 +00:00
|
|
|
// ERROR_CODE_OVERFLOW can indicate overflow or sequence error
|
2011-06-15 19:23:58 +00:00
|
|
|
case uhd::rx_metadata_t::ERROR_CODE_OVERFLOW:
|
2011-06-15 20:51:28 +00:00
|
|
|
last_time = md.time_spec;
|
2014-02-04 19:04:07 +00:00
|
|
|
had_an_overflow = true;
|
|
|
|
|
// check out_of_sequence flag to see if it was a sequence error or overflow
|
|
|
|
|
if (!md.out_of_sequence)
|
|
|
|
|
num_overflows++;
|
2011-06-15 19:23:58 +00:00
|
|
|
break;
|
|
|
|
|
|
2016-07-22 18:45:17 +00:00
|
|
|
case uhd::rx_metadata_t::ERROR_CODE_LATE_COMMAND:
|
|
|
|
|
std::cerr << "Receiver error: " << md.strerror() << ", restart streaming..."<< std::endl;
|
|
|
|
|
num_late_commands++;
|
|
|
|
|
// Radio core will be in the idle state. Issue stream command to restart streaming.
|
|
|
|
|
cmd.time_spec = usrp->get_time_now() + uhd::time_spec_t(0.05);
|
|
|
|
|
cmd.stream_now = (buffs.size() == 1);
|
|
|
|
|
rx_stream->issue_stream_cmd(cmd);
|
|
|
|
|
break;
|
|
|
|
|
|
2016-03-17 06:30:11 +00:00
|
|
|
case uhd::rx_metadata_t::ERROR_CODE_TIMEOUT:
|
|
|
|
|
if (burst_timer_elapsed) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-03-19 01:10:49 +00:00
|
|
|
std::cerr << "Receiver error: " << md.strerror() << ", continuing..." << std::endl;
|
|
|
|
|
num_timeouts++;
|
|
|
|
|
break;
|
|
|
|
|
|
2016-03-17 06:30:11 +00:00
|
|
|
// Otherwise, it's an error
|
2011-06-15 19:23:58 +00:00
|
|
|
default:
|
2014-04-01 12:10:30 +00:00
|
|
|
std::cerr << "Receiver error: " << md.strerror() << std::endl;
|
2011-06-17 05:31:36 +00:00
|
|
|
std::cerr << "Unexpected error on recv, continuing..." << std::endl;
|
|
|
|
|
break;
|
2011-06-15 19:23:58 +00:00
|
|
|
}
|
2011-06-17 05:31:36 +00:00
|
|
|
}
|
2011-06-15 19:23:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* Benchmark TX Rate
|
|
|
|
|
**********************************************************************/
|
2014-10-27 15:31:31 +00:00
|
|
|
void benchmark_tx_rate(
|
|
|
|
|
uhd::usrp::multi_usrp::sptr usrp,
|
|
|
|
|
const std::string &tx_cpu,
|
|
|
|
|
uhd::tx_streamer::sptr tx_stream,
|
2016-03-17 06:30:11 +00:00
|
|
|
atomic_bool& burst_timer_elapsed,
|
2014-10-27 15:31:31 +00:00
|
|
|
bool random_nsamps=false
|
|
|
|
|
) {
|
2011-06-15 19:23:58 +00:00
|
|
|
uhd::set_thread_priority_safe();
|
|
|
|
|
|
|
|
|
|
//print pre-test summary
|
|
|
|
|
std::cout << boost::format(
|
2013-07-15 22:44:42 +00:00
|
|
|
"Testing transmit rate %f Msps on %u channels"
|
|
|
|
|
) % (usrp->get_tx_rate()/1e6) % tx_stream->get_num_channels() << std::endl;
|
2011-06-15 19:23:58 +00:00
|
|
|
|
|
|
|
|
//setup variables and allocate buffer
|
|
|
|
|
uhd::tx_metadata_t md;
|
2016-03-17 06:30:11 +00:00
|
|
|
md.time_spec = usrp->get_time_now() + uhd::time_spec_t(INIT_DELAY);
|
|
|
|
|
md.has_time_spec = (tx_stream->get_num_channels() > 1);
|
2011-10-05 18:59:27 +00:00
|
|
|
const size_t max_samps_per_packet = tx_stream->get_max_num_samps();
|
2012-04-13 18:50:39 +00:00
|
|
|
std::vector<char> buff(max_samps_per_packet*uhd::convert::get_bytes_per_item(tx_cpu));
|
|
|
|
|
std::vector<const void *> buffs;
|
2013-07-15 22:44:42 +00:00
|
|
|
for (size_t ch = 0; ch < tx_stream->get_num_channels(); ch++)
|
2012-04-13 18:50:39 +00:00
|
|
|
buffs.push_back(&buff.front()); //same buffer for each channel
|
|
|
|
|
md.has_time_spec = (buffs.size() != 1);
|
2011-06-15 19:23:58 +00:00
|
|
|
|
2014-10-27 15:31:31 +00:00
|
|
|
if (random_nsamps) {
|
2016-03-17 06:30:11 +00:00
|
|
|
std::srand((unsigned int)time(NULL));
|
|
|
|
|
//while (not burst_timer_elapsed.load(boost::memory_order_relaxed)) {
|
|
|
|
|
while (not burst_timer_elapsed) {
|
2014-10-27 15:31:31 +00:00
|
|
|
size_t total_num_samps = rand() % max_samps_per_packet;
|
|
|
|
|
size_t num_acc_samps = 0;
|
|
|
|
|
const float timeout = 1;
|
|
|
|
|
|
|
|
|
|
usrp->set_time_now(uhd::time_spec_t(0.0));
|
|
|
|
|
while(num_acc_samps < total_num_samps){
|
|
|
|
|
//send a single packet
|
|
|
|
|
num_tx_samps += tx_stream->send(buffs, max_samps_per_packet, md, timeout)*tx_stream->get_num_channels();
|
|
|
|
|
num_acc_samps += std::min(total_num_samps-num_acc_samps, tx_stream->get_max_num_samps());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2016-03-17 06:30:11 +00:00
|
|
|
//while (not burst_timer_elapsed.load(boost::memory_order_relaxed)) {
|
|
|
|
|
while (not burst_timer_elapsed) {
|
2014-10-27 15:31:31 +00:00
|
|
|
num_tx_samps += tx_stream->send(buffs, max_samps_per_packet, md)*tx_stream->get_num_channels();
|
|
|
|
|
md.has_time_spec = false;
|
|
|
|
|
}
|
2011-06-15 19:23:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//send a mini EOB packet
|
2011-10-05 18:59:27 +00:00
|
|
|
md.end_of_burst = true;
|
2012-04-13 18:50:39 +00:00
|
|
|
tx_stream->send(buffs, 0, md);
|
2011-06-15 19:23:58 +00:00
|
|
|
}
|
|
|
|
|
|
2016-03-17 06:30:11 +00:00
|
|
|
void benchmark_tx_rate_async_helper(
|
|
|
|
|
uhd::tx_streamer::sptr tx_stream,
|
|
|
|
|
atomic_bool& burst_timer_elapsed
|
|
|
|
|
) {
|
2011-06-15 19:23:58 +00:00
|
|
|
//setup variables and allocate buffer
|
|
|
|
|
uhd::async_metadata_t async_md;
|
2016-03-17 06:30:11 +00:00
|
|
|
bool exit_flag = false;
|
2011-06-15 19:23:58 +00:00
|
|
|
|
2016-03-17 06:30:11 +00:00
|
|
|
while (true) {
|
|
|
|
|
//if (burst_timer_elapsed.load(boost::memory_order_relaxed)) {
|
|
|
|
|
if (burst_timer_elapsed) {
|
|
|
|
|
exit_flag = true;
|
|
|
|
|
}
|
2011-06-15 19:23:58 +00:00
|
|
|
|
2016-03-17 06:30:11 +00:00
|
|
|
if (not tx_stream->recv_async_msg(async_md)) {
|
|
|
|
|
if (exit_flag == true)
|
|
|
|
|
return;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2011-06-15 19:23:58 +00:00
|
|
|
|
|
|
|
|
//handle the error codes
|
|
|
|
|
switch(async_md.event_code){
|
|
|
|
|
case uhd::async_metadata_t::EVENT_CODE_BURST_ACK:
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case uhd::async_metadata_t::EVENT_CODE_UNDERFLOW:
|
|
|
|
|
case uhd::async_metadata_t::EVENT_CODE_UNDERFLOW_IN_PACKET:
|
|
|
|
|
num_underflows++;
|
|
|
|
|
break;
|
|
|
|
|
|
2011-06-17 05:31:36 +00:00
|
|
|
case uhd::async_metadata_t::EVENT_CODE_SEQ_ERROR:
|
|
|
|
|
case uhd::async_metadata_t::EVENT_CODE_SEQ_ERROR_IN_BURST:
|
|
|
|
|
num_seq_errors++;
|
|
|
|
|
break;
|
|
|
|
|
|
2011-06-15 19:23:58 +00:00
|
|
|
default:
|
|
|
|
|
std::cerr << "Event code: " << async_md.event_code << std::endl;
|
2011-06-17 05:31:36 +00:00
|
|
|
std::cerr << "Unexpected event on async recv, continuing..." << std::endl;
|
|
|
|
|
break;
|
2011-06-15 19:23:58 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* Main code + dispatcher
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
int UHD_SAFE_MAIN(int argc, char *argv[]){
|
2011-06-17 20:02:07 +00:00
|
|
|
uhd::set_thread_priority_safe();
|
2011-06-15 19:23:58 +00:00
|
|
|
|
|
|
|
|
//variables to be set by po
|
|
|
|
|
std::string args;
|
2016-08-01 23:56:59 +00:00
|
|
|
std::string rx_subdev, tx_subdev;
|
2011-06-15 19:23:58 +00:00
|
|
|
double duration;
|
|
|
|
|
double rx_rate, tx_rate;
|
2012-02-03 18:57:49 +00:00
|
|
|
std::string rx_otw, tx_otw;
|
2012-04-13 18:50:39 +00:00
|
|
|
std::string rx_cpu, tx_cpu;
|
2016-03-17 06:30:11 +00:00
|
|
|
std::string mode, ref, pps;
|
2016-08-23 21:56:02 +00:00
|
|
|
std::string channel_list, rx_channel_list, tx_channel_list;
|
2014-10-27 15:31:31 +00:00
|
|
|
bool random_nsamps = false;
|
2016-03-17 06:30:11 +00:00
|
|
|
atomic_bool burst_timer_elapsed(false);
|
2011-06-15 19:23:58 +00:00
|
|
|
|
|
|
|
|
//setup the program options
|
|
|
|
|
po::options_description desc("Allowed options");
|
|
|
|
|
desc.add_options()
|
|
|
|
|
("help", "help message")
|
|
|
|
|
("args", po::value<std::string>(&args)->default_value(""), "single uhd device address args")
|
|
|
|
|
("duration", po::value<double>(&duration)->default_value(10.0), "duration for the test in seconds")
|
2016-08-03 19:17:51 +00:00
|
|
|
("rx_subdev", po::value<std::string>(&rx_subdev), "specify the device subdev for RX")
|
|
|
|
|
("tx_subdev", po::value<std::string>(&tx_subdev), "specify the device subdev for TX")
|
2011-06-15 19:23:58 +00:00
|
|
|
("rx_rate", po::value<double>(&rx_rate), "specify to perform a RX rate test (sps)")
|
|
|
|
|
("tx_rate", po::value<double>(&tx_rate), "specify to perform a TX rate test (sps)")
|
2012-02-03 18:57:49 +00:00
|
|
|
("rx_otw", po::value<std::string>(&rx_otw)->default_value("sc16"), "specify the over-the-wire sample mode for RX")
|
|
|
|
|
("tx_otw", po::value<std::string>(&tx_otw)->default_value("sc16"), "specify the over-the-wire sample mode for TX")
|
2012-04-13 18:50:39 +00:00
|
|
|
("rx_cpu", po::value<std::string>(&rx_cpu)->default_value("fc32"), "specify the host/cpu sample mode for RX")
|
|
|
|
|
("tx_cpu", po::value<std::string>(&tx_cpu)->default_value("fc32"), "specify the host/cpu sample mode for TX")
|
2016-03-17 06:30:11 +00:00
|
|
|
("ref", po::value<std::string>(&ref), "clock reference (internal, external, mimo, gpsdo)")
|
|
|
|
|
("pps", po::value<std::string>(&pps), "PPS source (internal, external, mimo, gpsdo)")
|
|
|
|
|
("mode", po::value<std::string>(&mode), "DEPRECATED - use \"ref\" and \"pps\" instead (none, mimo)")
|
2014-10-27 15:31:31 +00:00
|
|
|
("random", "Run with random values of samples in send() and recv() to stress-test the I/O.")
|
2013-08-26 20:51:30 +00:00
|
|
|
("channels", po::value<std::string>(&channel_list)->default_value("0"), "which channel(s) to use (specify \"0\", \"1\", \"0,1\", etc)")
|
2016-08-23 21:56:02 +00:00
|
|
|
("rx_channels", po::value<std::string>(&rx_channel_list), "which RX channel(s) to use (specify \"0\", \"1\", \"0,1\", etc)")
|
|
|
|
|
("tx_channels", po::value<std::string>(&tx_channel_list), "which TX channel(s) to use (specify \"0\", \"1\", \"0,1\", etc)")
|
2011-06-15 19:23:58 +00:00
|
|
|
;
|
|
|
|
|
po::variables_map vm;
|
|
|
|
|
po::store(po::parse_command_line(argc, argv, desc), vm);
|
|
|
|
|
po::notify(vm);
|
|
|
|
|
|
|
|
|
|
//print the help message
|
2011-07-08 19:03:14 +00:00
|
|
|
if (vm.count("help") or (vm.count("rx_rate") + vm.count("tx_rate")) == 0){
|
2011-06-15 19:23:58 +00:00
|
|
|
std::cout << boost::format("UHD Benchmark Rate %s") % desc << std::endl;
|
|
|
|
|
std::cout <<
|
|
|
|
|
" Specify --rx_rate for a receive-only test.\n"
|
|
|
|
|
" Specify --tx_rate for a transmit-only test.\n"
|
|
|
|
|
" Specify both options for a full-duplex test.\n"
|
|
|
|
|
<< std::endl;
|
|
|
|
|
return ~0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-27 15:31:31 +00:00
|
|
|
// Random number of samples?
|
|
|
|
|
if (vm.count("random")) {
|
|
|
|
|
std::cout << "Using random number of samples in send() and recv() calls." << std::endl;
|
|
|
|
|
random_nsamps = true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-17 06:30:11 +00:00
|
|
|
if (vm.count("mode")) {
|
|
|
|
|
if (vm.count("pps") or vm.count("ref")) {
|
|
|
|
|
std::cout << "ERROR: The \"mode\" parameter cannot be used with the \"ref\" and \"pps\" parameters.\n" << std::endl;
|
|
|
|
|
return -1;
|
|
|
|
|
} else if (mode == "mimo") {
|
|
|
|
|
ref = pps = "mimo";
|
|
|
|
|
std::cout << "The use of the \"mode\" parameter is deprecated. Please use \"ref\" and \"pps\" parameters instead\n" << std::endl;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-15 19:23:58 +00:00
|
|
|
//create a usrp device
|
|
|
|
|
std::cout << std::endl;
|
2014-07-17 18:50:50 +00:00
|
|
|
uhd::device_addrs_t device_addrs = uhd::device::find(args, uhd::device::USRP);
|
2011-06-17 05:31:36 +00:00
|
|
|
if (not device_addrs.empty() and device_addrs.at(0).get("type", "") == "usrp1"){
|
2011-06-15 19:23:58 +00:00
|
|
|
std::cerr << "*** Warning! ***" << std::endl;
|
|
|
|
|
std::cerr << "Benchmark results will be inaccurate on USRP1 due to insufficient features.\n" << std::endl;
|
|
|
|
|
}
|
|
|
|
|
std::cout << boost::format("Creating the usrp device with: %s...") % args << std::endl;
|
2011-06-17 05:31:36 +00:00
|
|
|
uhd::usrp::multi_usrp::sptr usrp = uhd::usrp::multi_usrp::make(args);
|
2016-08-01 23:56:59 +00:00
|
|
|
|
|
|
|
|
//always select the subdevice first, the channel mapping affects the other settings
|
|
|
|
|
if (vm.count("rx_subdev")) {
|
|
|
|
|
usrp->set_rx_subdev_spec(rx_subdev);
|
|
|
|
|
}
|
|
|
|
|
if (vm.count("tx_subdev")) {
|
|
|
|
|
usrp->set_tx_subdev_spec(tx_subdev);
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-15 19:23:58 +00:00
|
|
|
std::cout << boost::format("Using Device: %s") % usrp->get_pp_string() << std::endl;
|
2016-03-17 06:30:11 +00:00
|
|
|
int num_mboards = usrp->get_num_mboards();
|
|
|
|
|
|
|
|
|
|
boost::thread_group thread_group;
|
2011-06-15 19:23:58 +00:00
|
|
|
|
2016-03-17 06:30:11 +00:00
|
|
|
if(vm.count("ref"))
|
|
|
|
|
{
|
|
|
|
|
if (ref == "mimo")
|
|
|
|
|
{
|
|
|
|
|
if (num_mboards != 2) {
|
|
|
|
|
std::cerr << "ERROR: ref = \"mimo\" implies 2 motherboards; your system has " << num_mboards << " boards" << std::endl;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
usrp->set_clock_source("mimo",1);
|
|
|
|
|
} else {
|
|
|
|
|
usrp->set_clock_source(ref);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(ref != "internal") {
|
|
|
|
|
std::cout << "Now confirming lock on clock signals..." << std::endl;
|
|
|
|
|
bool is_locked = false;
|
2016-05-17 17:15:29 +00:00
|
|
|
boost::system_time end_time = boost::get_system_time() + boost::posix_time::milliseconds(CLOCK_TIMEOUT);
|
2016-03-17 06:30:11 +00:00
|
|
|
for (int i = 0; i < num_mboards; i++) {
|
|
|
|
|
if (ref == "mimo" and i == 0) continue;
|
|
|
|
|
while((is_locked = usrp->get_mboard_sensor("ref_locked",i).to_bool()) == false and
|
|
|
|
|
boost::get_system_time() < end_time )
|
|
|
|
|
{
|
|
|
|
|
boost::this_thread::sleep(boost::posix_time::milliseconds(1));
|
|
|
|
|
}
|
|
|
|
|
if (is_locked == false) {
|
|
|
|
|
std::cerr << "ERROR: Unable to confirm clock signal locked on board:" << i << std::endl;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
is_locked = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-04-13 18:50:39 +00:00
|
|
|
}
|
|
|
|
|
|
2016-03-17 06:30:11 +00:00
|
|
|
if(vm.count("pps"))
|
|
|
|
|
{
|
|
|
|
|
if(pps == "mimo")
|
|
|
|
|
{
|
|
|
|
|
if (num_mboards != 2) {
|
|
|
|
|
std::cerr << "ERROR: ref = \"mimo\" implies 2 motherboards; your system has " << num_mboards << " boards" << std::endl;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
//make mboard 1 a slave over the MIMO Cable
|
|
|
|
|
usrp->set_time_source("mimo", 1);
|
|
|
|
|
} else {
|
|
|
|
|
usrp->set_time_source(pps);
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-06-15 19:23:58 +00:00
|
|
|
|
2016-08-23 21:56:02 +00:00
|
|
|
//check that the device has sufficient RX and TX channels available
|
2013-08-26 20:51:30 +00:00
|
|
|
std::vector<std::string> channel_strings;
|
2016-08-23 21:56:02 +00:00
|
|
|
std::vector<size_t> rx_channel_nums;
|
|
|
|
|
if (vm.count("rx_rate")) {
|
|
|
|
|
if (!vm.count("rx_channels")) {
|
|
|
|
|
rx_channel_list = channel_list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
boost::split(channel_strings, rx_channel_list, boost::is_any_of("\"',"));
|
|
|
|
|
for (size_t ch = 0; ch < channel_strings.size(); ch++) {
|
2017-06-28 02:06:50 +00:00
|
|
|
size_t chan = std::stoul(channel_strings[ch]);
|
2016-08-23 21:56:02 +00:00
|
|
|
if (chan >= usrp->get_rx_num_channels()) {
|
|
|
|
|
throw std::runtime_error("Invalid channel(s) specified.");
|
|
|
|
|
} else {
|
2017-06-28 02:06:50 +00:00
|
|
|
rx_channel_nums.push_back(std::stoul(channel_strings[ch]));
|
2016-08-23 21:56:02 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::vector<size_t> tx_channel_nums;
|
|
|
|
|
if (vm.count("tx_rate")) {
|
|
|
|
|
if (!vm.count("tx_channels")) {
|
|
|
|
|
tx_channel_list = channel_list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
boost::split(channel_strings, tx_channel_list, boost::is_any_of("\"',"));
|
|
|
|
|
for (size_t ch = 0; ch < channel_strings.size(); ch++) {
|
2017-06-28 02:06:50 +00:00
|
|
|
size_t chan = std::stoul(channel_strings[ch]);
|
2016-08-23 21:56:02 +00:00
|
|
|
if (chan >= usrp->get_tx_num_channels()) {
|
|
|
|
|
throw std::runtime_error("Invalid channel(s) specified.");
|
|
|
|
|
} else {
|
2017-06-28 02:06:50 +00:00
|
|
|
tx_channel_nums.push_back(std::stoul(channel_strings[ch]));
|
2016-08-23 21:56:02 +00:00
|
|
|
}
|
2013-08-26 20:51:30 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-17 06:30:11 +00:00
|
|
|
std::cout << boost::format("Setting device timestamp to 0...") << std::endl;
|
2016-09-28 16:49:53 +00:00
|
|
|
const bool sync_channels =
|
|
|
|
|
pps == "mimo" or
|
|
|
|
|
ref == "mimo" or
|
|
|
|
|
rx_channel_nums.size() > 1 or
|
|
|
|
|
tx_channel_nums.size() > 1
|
|
|
|
|
;
|
2016-08-23 21:56:02 +00:00
|
|
|
if (!sync_channels) {
|
2016-03-17 06:30:11 +00:00
|
|
|
usrp->set_time_now(0.0);
|
|
|
|
|
} else {
|
|
|
|
|
usrp->set_time_unknown_pps(uhd::time_spec_t(0.0));
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-15 19:23:58 +00:00
|
|
|
//spawn the receive test thread
|
|
|
|
|
if (vm.count("rx_rate")){
|
|
|
|
|
usrp->set_rx_rate(rx_rate);
|
2013-07-15 22:44:42 +00:00
|
|
|
//create a receive streamer
|
|
|
|
|
uhd::stream_args_t stream_args(rx_cpu, rx_otw);
|
2016-08-23 21:56:02 +00:00
|
|
|
stream_args.channels = rx_channel_nums;
|
2013-07-15 22:44:42 +00:00
|
|
|
uhd::rx_streamer::sptr rx_stream = usrp->get_rx_stream(stream_args);
|
2017-04-18 23:46:44 +00:00
|
|
|
auto rx_thread = thread_group.create_thread(boost::bind(&benchmark_rx_rate, usrp, rx_cpu, rx_stream, random_nsamps, boost::ref(burst_timer_elapsed)));
|
|
|
|
|
uhd::set_thread_name(rx_thread, "bmark_rx_stream");
|
2011-06-15 19:23:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//spawn the transmit test thread
|
|
|
|
|
if (vm.count("tx_rate")){
|
|
|
|
|
usrp->set_tx_rate(tx_rate);
|
2013-07-15 22:44:42 +00:00
|
|
|
//create a transmit streamer
|
|
|
|
|
uhd::stream_args_t stream_args(tx_cpu, tx_otw);
|
2016-08-23 21:56:02 +00:00
|
|
|
stream_args.channels = tx_channel_nums;
|
2013-07-15 22:44:42 +00:00
|
|
|
uhd::tx_streamer::sptr tx_stream = usrp->get_tx_stream(stream_args);
|
2017-04-18 23:46:44 +00:00
|
|
|
auto tx_thread = thread_group.create_thread(boost::bind(&benchmark_tx_rate, usrp, tx_cpu, tx_stream, boost::ref(burst_timer_elapsed), random_nsamps));
|
|
|
|
|
uhd::set_thread_name(tx_thread, "bmark_tx_stream");
|
|
|
|
|
auto tx_async_thread = thread_group.create_thread(boost::bind(&benchmark_tx_rate_async_helper, tx_stream, boost::ref(burst_timer_elapsed)));
|
|
|
|
|
uhd::set_thread_name(tx_async_thread, "bmark_tx_helper");
|
2011-06-15 19:23:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//sleep for the required duration
|
|
|
|
|
const long secs = long(duration);
|
2011-06-15 21:42:12 +00:00
|
|
|
const long usecs = long((duration - secs)*1e6);
|
2016-07-22 18:45:17 +00:00
|
|
|
boost::this_thread::sleep(boost::posix_time::seconds(secs)
|
|
|
|
|
+ boost::posix_time::microseconds(usecs)
|
2016-08-23 21:56:02 +00:00
|
|
|
+ boost::posix_time::milliseconds( (rx_channel_nums.size() <= 1 and tx_channel_nums.size() <= 1) ? 0 : (INIT_DELAY * 1000))
|
2016-07-22 18:45:17 +00:00
|
|
|
);
|
2011-06-15 19:23:58 +00:00
|
|
|
|
|
|
|
|
//interrupt and join the threads
|
2016-03-17 06:30:11 +00:00
|
|
|
//burst_timer_elapsed.store(true, boost::memory_order_relaxed);
|
|
|
|
|
burst_timer_elapsed = true;
|
2011-06-15 19:23:58 +00:00
|
|
|
thread_group.join_all();
|
|
|
|
|
|
|
|
|
|
//print summary
|
|
|
|
|
std::cout << std::endl << boost::format(
|
|
|
|
|
"Benchmark rate summary:\n"
|
2011-06-15 21:42:12 +00:00
|
|
|
" Num received samples: %u\n"
|
|
|
|
|
" Num dropped samples: %u\n"
|
|
|
|
|
" Num overflows detected: %u\n"
|
2011-06-15 19:23:58 +00:00
|
|
|
" Num transmitted samples: %u\n"
|
2011-06-17 05:31:36 +00:00
|
|
|
" Num sequence errors: %u\n"
|
2011-06-15 19:23:58 +00:00
|
|
|
" Num underflows detected: %u\n"
|
2016-07-22 18:45:17 +00:00
|
|
|
" Num late commands: %u\n"
|
2016-03-19 01:10:49 +00:00
|
|
|
" Num timeouts: %u\n"
|
|
|
|
|
) % num_rx_samps % num_dropped_samps
|
|
|
|
|
% num_overflows % num_tx_samps
|
|
|
|
|
% num_seq_errors % num_underflows
|
2016-07-22 18:45:17 +00:00
|
|
|
% num_late_commands % num_timeouts
|
|
|
|
|
<< std::endl;
|
2011-06-15 19:23:58 +00:00
|
|
|
|
|
|
|
|
//finished
|
|
|
|
|
std::cout << std::endl << "Done!" << std::endl << std::endl;
|
2012-10-18 22:33:07 +00:00
|
|
|
return EXIT_SUCCESS;
|
2011-06-15 19:23:58 +00:00
|
|
|
}
|