Fixed array_multiplication compile errors

This commit is contained in:
Dudecake 2020-09-27 18:00:23 +02:00
parent a0eabc6472
commit ce7c7eba3d
No known key found for this signature in database
GPG key ID: 23FE6D6C9114BC76
5 changed files with 7 additions and 13 deletions

View file

@ -101,7 +101,6 @@ class Manager
* sequences.
*
* @param tensors The tensors to be used in the operation recorded
* @param sequenceName The name of the sequence to be retrieved or created
* @param TArgs Template parameters that will be used to initialise
* Operation to allow for extensible configurations on initialisation
*/

View file

@ -236,7 +236,7 @@ OpAlgoBase<tX, tY, tZ>::init()
SPDLOG_DEBUG("Kompute OpAlgoBase fetching spirv data");
std::vector<char>& shaderFileData = this->fetchSpirvBinaryData();
std::vector<char> shaderFileData = this->fetchSpirvBinaryData();
SPDLOG_DEBUG("Kompute OpAlgoBase Initialising algorithm component");

View file

@ -162,7 +162,7 @@ OpAlgoLhsRhsOut<tX, tY, tZ>::init()
SPDLOG_DEBUG("Kompute OpAlgoLhsRhsOut fetching spirv data");
std::vector<char>& shaderFileData = this->fetchSpirvBinaryData();
std::vector<char> shaderFileData = this->fetchSpirvBinaryData();
SPDLOG_DEBUG("Kompute OpAlgoLhsRhsOut Initialising algorithm component");