mirror of https://github.com/pvnis/srsRAN_4G.git
Merge branch 'next' into agpl_next
commit
83f103fe4b
@ -0,0 +1,47 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
* \section COPYRIGHT
|
||||||
|
*
|
||||||
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||||||
|
*
|
||||||
|
* By using this file, you agree to the terms and conditions set
|
||||||
|
* forth in the LICENSE file which can be found at the top level of
|
||||||
|
* the distribution.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef SRSRAN_SCHED_NR_TIME_RR_H
|
||||||
|
#define SRSRAN_SCHED_NR_TIME_RR_H
|
||||||
|
|
||||||
|
#include "sched_nr_grant_allocator.h"
|
||||||
|
#include "srsran/common/slot_point.h"
|
||||||
|
|
||||||
|
namespace srsenb {
|
||||||
|
namespace sched_nr_impl {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Base class for scheduler algorithms implementations
|
||||||
|
*/
|
||||||
|
class sched_nr_base
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
virtual ~sched_nr_base() = default;
|
||||||
|
|
||||||
|
virtual void sched_dl_users(slot_ue_map_t& ue_db, bwp_slot_allocator& slot_alloc) = 0;
|
||||||
|
virtual void sched_ul_users(slot_ue_map_t& ue_db, bwp_slot_allocator& slot_alloc) = 0;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
srslog::basic_logger& logger = srslog::fetch_basic_logger("MAC");
|
||||||
|
};
|
||||||
|
|
||||||
|
class sched_nr_time_rr : public sched_nr_base
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
void sched_dl_users(slot_ue_map_t& ue_db, bwp_slot_allocator& slot_alloc) override;
|
||||||
|
void sched_ul_users(slot_ue_map_t& ue_db, bwp_slot_allocator& slot_alloc) override;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace sched_nr_impl
|
||||||
|
} // namespace srsenb
|
||||||
|
|
||||||
|
#endif // SRSRAN_SCHED_NR_TIME_RR_H
|
@ -0,0 +1,92 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
* \section COPYRIGHT
|
||||||
|
*
|
||||||
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||||||
|
*
|
||||||
|
* By using this file, you agree to the terms and conditions set
|
||||||
|
* forth in the LICENSE file which can be found at the top level of
|
||||||
|
* the distribution.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "srsenb/hdr/stack/mac/nr/sched_nr_time_rr.h"
|
||||||
|
|
||||||
|
namespace srsenb {
|
||||||
|
namespace sched_nr_impl {
|
||||||
|
|
||||||
|
template <typename Predicate>
|
||||||
|
bool round_robin_apply(slot_ue_map_t& ue_db, uint32_t rr_count, Predicate p)
|
||||||
|
{
|
||||||
|
if (ue_db.empty()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
auto it = ue_db.begin();
|
||||||
|
std::advance(it, (rr_count % ue_db.size()));
|
||||||
|
for (uint32_t count = 0; count < ue_db.size(); ++count, ++it) {
|
||||||
|
if (it == ue_db.end()) {
|
||||||
|
it = ue_db.begin();
|
||||||
|
}
|
||||||
|
if (p(it->second)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void sched_nr_time_rr::sched_dl_users(slot_ue_map_t& ue_db, bwp_slot_allocator& slot_alloc)
|
||||||
|
{
|
||||||
|
// Start with retxs
|
||||||
|
if (round_robin_apply(ue_db, slot_alloc.get_pdcch_tti().to_uint(), [&slot_alloc](slot_ue& ue) {
|
||||||
|
if (ue.h_dl != nullptr and ue.h_dl->has_pending_retx(slot_alloc.get_tti_rx())) {
|
||||||
|
alloc_result res = slot_alloc.alloc_pdsch(ue, ue.h_dl->prbs());
|
||||||
|
if (res == alloc_result::success) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
})) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Move on to new txs
|
||||||
|
round_robin_apply(ue_db, slot_alloc.get_pdcch_tti().to_uint(), [&slot_alloc](slot_ue& ue) {
|
||||||
|
if (ue.h_dl != nullptr and ue.h_dl->empty()) {
|
||||||
|
alloc_result res = slot_alloc.alloc_pdsch(ue, prb_interval{0, slot_alloc.cfg.cfg.rb_width});
|
||||||
|
if (res == alloc_result::success) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void sched_nr_time_rr::sched_ul_users(slot_ue_map_t& ue_db, bwp_slot_allocator& slot_alloc)
|
||||||
|
{
|
||||||
|
// Start with retxs
|
||||||
|
if (round_robin_apply(ue_db, slot_alloc.get_pdcch_tti().to_uint(), [&slot_alloc](slot_ue& ue) {
|
||||||
|
if (ue.h_ul != nullptr and ue.h_ul->has_pending_retx(slot_alloc.get_tti_rx())) {
|
||||||
|
alloc_result res = slot_alloc.alloc_pusch(ue, ue.h_ul->prbs());
|
||||||
|
if (res == alloc_result::success) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
})) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Move on to new txs
|
||||||
|
round_robin_apply(ue_db, slot_alloc.get_pdcch_tti().to_uint(), [&slot_alloc](slot_ue& ue) {
|
||||||
|
if (ue.h_ul != nullptr and ue.h_ul->empty()) {
|
||||||
|
alloc_result res = slot_alloc.alloc_pusch(ue, prb_interval{0, slot_alloc.cfg.cfg.rb_width});
|
||||||
|
if (res == alloc_result::success) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace sched_nr_impl
|
||||||
|
} // namespace srsenb
|
Loading…
Reference in New Issue