summaryrefslogtreecommitdiffstats
path: root/src/stateless
diff options
context:
space:
mode:
authorimarom <imarom@cisco.com>2016-04-10 10:15:54 +0300
committerimarom <imarom@cisco.com>2016-04-10 12:37:21 +0300
commitc48c89a97ad070b8f79ac746b6b83aab1cc6f177 (patch)
treeb7842d488afe01f29e0f218b9dc9db85bb03afa9 /src/stateless
parentf39e572d1fbbf17aa7c9e071b9c056ab85f894a5 (diff)
multicore scheduling
Diffstat (limited to 'src/stateless')
-rw-r--r--src/stateless/cp/trex_stream.cpp3
-rw-r--r--src/stateless/cp/trex_stream.h13
-rw-r--r--src/stateless/cp/trex_streams_compiler.cpp43
-rw-r--r--src/stateless/dp/trex_stateless_dp_core.cpp2
-rw-r--r--src/stateless/dp/trex_stream_node.h7
5 files changed, 41 insertions, 27 deletions
diff --git a/src/stateless/cp/trex_stream.cpp b/src/stateless/cp/trex_stream.cpp
index 6e4478d6..4325858c 100644
--- a/src/stateless/cp/trex_stream.cpp
+++ b/src/stateless/cp/trex_stream.cpp
@@ -135,7 +135,8 @@ TrexStream::TrexStream(uint8_t type,
m_enabled = false;
m_self_start = false;
- m_delay_next_stream_sec = 0;
+ m_mc_phase_pre_sec = 0;
+ m_mc_phase_post_sec = 0;
m_pkt.binary = NULL;
m_pkt.len = 0;
diff --git a/src/stateless/cp/trex_stream.h b/src/stateless/cp/trex_stream.h
index e4ce914e..1914026b 100644
--- a/src/stateless/cp/trex_stream.h
+++ b/src/stateless/cp/trex_stream.h
@@ -401,6 +401,7 @@ public:
set_multi_burst(burst_total_pkts,1,0.0);
}
+
/* create new stream */
TrexStream * clone(bool full = false) const {
@@ -422,7 +423,11 @@ public:
}
dp->m_isg_usec = m_isg_usec;
- dp->m_delay_next_stream_sec = m_delay_next_stream_sec;
+
+ /* multi core phase paramters */
+ dp->m_mc_phase_pre_sec = m_mc_phase_pre_sec;
+ dp->m_mc_phase_post_sec = m_mc_phase_post_sec;
+
dp->m_next_stream_id = m_next_stream_id;
dp->m_enabled = m_enabled;
@@ -457,7 +462,7 @@ public:
return ( (m_burst_total_pkts / get_pps()) * 1000 * 1000);
}
- double get_ipg() {
+ double get_ipg_sec() {
return (1.0 / get_pps());
}
@@ -502,7 +507,9 @@ public:
/* config fields */
- double m_delay_next_stream_sec;
+ double m_mc_phase_pre_sec;
+ double m_mc_phase_post_sec;
+
double m_isg_usec;
int m_next_stream_id;
diff --git a/src/stateless/cp/trex_streams_compiler.cpp b/src/stateless/cp/trex_streams_compiler.cpp
index da2b9c9b..c4ae0bed 100644
--- a/src/stateless/cp/trex_streams_compiler.cpp
+++ b/src/stateless/cp/trex_streams_compiler.cpp
@@ -586,6 +586,11 @@ TrexStreamsCompiler::compile_stream_on_all_cores(TrexStream *stream,
int per_core_burst_total_pkts = (stream->m_burst_total_pkts / dp_core_count);
int burst_remainder = (stream->m_burst_total_pkts % dp_core_count);
+ bool has_remainder = (burst_remainder > 0);
+ int remainder_left = burst_remainder;
+
+ double base_ipg_sec = factor * stream->get_ipg_sec();
+
/* for each core - creates its own version of the stream */
for (uint8_t i = 0; i < dp_core_count; i++) {
@@ -594,30 +599,32 @@ TrexStreamsCompiler::compile_stream_on_all_cores(TrexStream *stream,
/* fix stream ID */
dp_stream->fix_dp_stream_id(new_id, new_next_id);
+ /* some phase */
+ dp_stream->m_mc_phase_pre_sec = base_ipg_sec * i;
+
/* each core gets a share of the packets */
dp_stream->m_burst_total_pkts = per_core_burst_total_pkts;
+
+ /* rate is slower * dp_core_count */
+ dp_stream->update_rate_factor(factor / dp_core_count);
+
- /* core 0 also gets the remainder */
- if (i == 0) {
- dp_stream->m_burst_total_pkts += burst_remainder;
- }
-
- /* for continous the rate is divided by the cores */
- if (stream->m_type == TrexStream::stCONTINUOUS) {
- dp_stream->update_rate_factor(factor / dp_core_count);
+ /* allocate the rest of the packets */
+ if (has_remainder) {
+ if (remainder_left > 0) {
+ dp_stream->m_burst_total_pkts++;
+ remainder_left--;
+ dp_stream->m_mc_phase_post_sec = base_ipg_sec * remainder_left;
+ } else {
+ /* a delay slot if no packets left */
+ dp_stream->m_mc_phase_post_sec = base_ipg_sec * (dp_core_count - 1 - i + burst_remainder);
+ }
+
} else {
- /* rate is according to the share of the packetes the core got */
- dp_stream->update_rate_factor(factor * (dp_stream->m_burst_total_pkts / double(stream->m_burst_total_pkts)));
+ /* if no remainder (or continous) simply add a reverse phase */
+ dp_stream->m_mc_phase_post_sec = base_ipg_sec * (dp_core_count - 1 - i);
}
-
-
- //dp_stream->m_pkt.binary[14 + 20] = 0;
- //dp_stream->m_pkt.binary[14 + 21] = i;
-
- /* some phase */
- dp_stream->m_isg_usec += (stream->get_ipg() * i) * 1e6;
- dp_stream->m_delay_next_stream_sec = stream->get_ipg() * (dp_core_count - 1 - i);
core_streams[i] = dp_stream;
}
diff --git a/src/stateless/dp/trex_stateless_dp_core.cpp b/src/stateless/dp/trex_stateless_dp_core.cpp
index 42ff9e24..2a4a384b 100644
--- a/src/stateless/dp/trex_stateless_dp_core.cpp
+++ b/src/stateless/dp/trex_stateless_dp_core.cpp
@@ -602,7 +602,7 @@ TrexStatelessDpCore::add_stream(TrexStatelessDpPerPort * lp_port,
node->m_state =CGenNodeStateless::ss_INACTIVE;
}
- node->m_time = m_core->m_cur_time_sec + usec_to_sec(stream->m_isg_usec);
+ node->m_time = m_core->m_cur_time_sec + usec_to_sec(stream->m_isg_usec) + stream->m_mc_phase_pre_sec;
pkt_dir_t dir = m_core->m_node_gen.m_v_if->port_id_to_dir(stream->m_port_id);
node->m_flags = 0;
diff --git a/src/stateless/dp/trex_stream_node.h b/src/stateless/dp/trex_stream_node.h
index fa6fd8bd..d756ba43 100644
--- a/src/stateless/dp/trex_stream_node.h
+++ b/src/stateless/dp/trex_stream_node.h
@@ -144,7 +144,7 @@ public:
/* we restart the stream, schedule it using stream isg */
inline void update_refresh_time(double cur_time){
- m_time = cur_time + usec_to_sec(m_ref_stream_info->m_isg_usec);
+ m_time = cur_time + usec_to_sec(m_ref_stream_info->m_isg_usec) + m_ref_stream_info->m_mc_phase_pre_sec;
}
inline bool is_mask_for_free(){
@@ -236,8 +236,7 @@ public:
set_state(CGenNodeStateless::ss_INACTIVE);
if ( thread->set_stateless_next_node(this,m_next_stream) ){
/* update the next stream time using isg */
- //m_next_stream->update_refresh_time(m_time + m_next_time_offset);
- m_next_stream->update_refresh_time(m_time + m_ref_stream_info->m_delay_next_stream_sec);
+ m_next_stream->update_refresh_time(m_time + m_ref_stream_info->m_mc_phase_post_sec);
thread->m_node_gen.m_p_queue.push( (CGenNode *)m_next_stream);
}else{
@@ -246,7 +245,7 @@ public:
}
}else{
- m_time += get_multi_ibg_sec();
+ m_time += get_multi_ibg_sec() + m_ref_stream_info->m_mc_phase_post_sec + m_ref_stream_info->m_mc_phase_pre_sec;
m_single_burst = m_single_burst_refill;
thread->m_node_gen.m_p_queue.push( (CGenNode *)this);
}