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

daisytuner / sdfglib / 18718471628

22 Oct 2025 01:51PM UTC coverage: 61.746% (-0.6%) from 62.358%
18718471628

push

github

web-flow
Merge pull request #288 from daisytuner/InstrumentationInfo

Instrumentation info

104 of 310 new or added lines in 20 files covered. (33.55%)

25 existing lines in 6 files now uncovered.

9746 of 15784 relevant lines covered (61.75%)

100.97 hits per line

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

37.5
/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(
1✔
9
    const ElementType& element_type,
10
    const TargetType& target_type,
11
    long long loopnest_index,
12
    size_t element_id,
13
    const std::unordered_map<std::string, std::string>& metrics
14
)
15
    : element_type_(element_type), target_type_(target_type), loopnest_index_(loopnest_index), element_id_(element_id),
1✔
16
      metrics_(metrics) {}
1✔
17

NEW
18
const ElementType& InstrumentationInfo::element_type() const { return element_type_; }
×
19

NEW
20
const TargetType& InstrumentationInfo::target_type() const { return target_type_; }
×
21

NEW
22
long long InstrumentationInfo::loopnest_index() const { return loopnest_index_; }
×
23

NEW
24
size_t InstrumentationInfo::element_id() const { return element_id_; }
×
25

NEW
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

© 2026 Coveralls, Inc