Fixed array_multiplication compile errors
This commit is contained in:
parent
a0eabc6472
commit
ce7c7eba3d
5 changed files with 7 additions and 13 deletions
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue