• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

daisytuner / sdfglib / 20498791379

24 Dec 2025 12:27PM UTC coverage: 39.109% (+0.05%) from 39.061%
20498791379

push

github

web-flow
Merge pull request #406 from daisytuner/loop-info-inst

move loopnest index into loop info

13537 of 44946 branches covered (30.12%)

Branch coverage included in aggregate %.

15 of 46 new or added lines in 9 files covered. (32.61%)

1 existing line in 1 file now uncovered.

11669 of 19504 relevant lines covered (59.83%)

84.09 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/codegen/instrumentation/instrumentation_info.cpp
1
#include "sdfg/codegen/instrumentation/instrumentation_info.h"
2

3

4
namespace sdfg {
5
namespace codegen {
6

7

8
InstrumentationInfo::InstrumentationInfo(
×
9
    size_t element_id,
10
    const ElementType& element_type,
11
    const TargetType& target_type,
12
    const analysis::LoopInfo& loop_info,
13
    const std::unordered_map<std::string, std::string>& metrics
14
)
15
    : element_id_(element_id), element_type_(element_type), target_type_(target_type), loop_info_(loop_info),
×
NEW
16
      metrics_(metrics) {}
×
17

18
size_t InstrumentationInfo::element_id() const { return element_id_; }
×
19

20
const ElementType& InstrumentationInfo::element_type() const { return element_type_; }
×
21

22
const TargetType& InstrumentationInfo::target_type() const { return target_type_; }
×
23

24
const analysis::LoopInfo& InstrumentationInfo::loop_info() const { return loop_info_; }
×
25

26
const std::unordered_map<std::string, std::string>& InstrumentationInfo::metrics() const { return metrics_; }
×
27

28
} // namespace codegen
29
} // namespace sdfg
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc