Generates the function parameters for the node. \param[in/out] kerStream The string will be written to this stream \param[in] ids The integer id of the node and its children \param[in] is_linear True if the kernel is a linear kernel
| 186 | /// \param[in] ids The integer id of the node and its children |
| 187 | /// \param[in] is_linear True if the kernel is a linear kernel |
| 188 | virtual void genParams(std::stringstream &kerStream, int id, |
| 189 | bool is_linear) const { |
| 190 | UNUSED(kerStream); |
| 191 | UNUSED(id); |
| 192 | UNUSED(is_linear); |
| 193 | } |
| 194 | |
| 195 | virtual void calc(int x, int y, int z, int w, int lim) { |
| 196 | UNUSED(x); |
no outgoing calls
no test coverage detected