We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to double check below behavior:
In pimCmdRedSum class, the computeRegion is a virtual function:
virtual bool computeRegion(unsigned index) override;
In pimCmd.cpp file, this function takes a template data type:
template <typename T> bool pimCmdRedSum<T>::computeRegion(unsigned index)
The pimCmd::computeAllRegions function does not pass any template data type to the virtual computeRegion function.
The text was updated successfully, but these errors were encountered:
fasiddique
No branches or pull requests
Need to double check below behavior:
In pimCmdRedSum class, the computeRegion is a virtual function:
In pimCmd.cpp file, this function takes a template data type:
The pimCmd::computeAllRegions function does not pass any template data type to the virtual computeRegion function.
The text was updated successfully, but these errors were encountered: