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

daisytuner / sdfglib / 16316662667

16 Jul 2025 10:10AM UTC coverage: 65.036% (+0.4%) from 64.642%
16316662667

Pull #142

github

web-flow
Merge a09351913 into 210d6b647
Pull Request #142: adds ReLU math instrinsic

60 of 69 new or added lines in 3 files covered. (86.96%)

8653 of 13305 relevant lines covered (65.04%)

177.65 hits per line

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

0.0
/include/sdfg/data_flow/library_nodes/math/math_node.h
1
#pragma once
2

3
#include "sdfg/data_flow/library_node.h"
4

5
namespace sdfg {
6

7
namespace analysis {
8
class AnalysisManager;
9
}
10

11
namespace builder {
12
class StructuredSDFGBuilder;
13
}
14

15
namespace math {
16

17

18
class MathNode : public data_flow::LibraryNode {
19
public:
20
    MathNode(
21
        size_t element_id,
22
        const DebugInfo& debug_info,
23
        const graph::Vertex vertex,
24
        data_flow::DataFlowGraph& parent,
25
        const data_flow::LibraryNodeCode& code,
26
        const std::vector<std::string>& outputs,
27
        const std::vector<std::string>& inputs
28
    );
29

30
    virtual bool expand(builder::StructuredSDFGBuilder& builder, analysis::AnalysisManager& analysis_manager) = 0;
31

NEW
32
    symbolic::SymbolSet symbols() const override { return {}; }
×
33

NEW
34
    void replace(const symbolic::Expression& old_expression, const symbolic::Expression& new_expression) override {
×
NEW
35
        return;
×
36
    }
37
};
38

39
} // namespace math
40
} // 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