Run codespell over docs and comments

Spelling fixes reported by running codespell over docs and sources.
This commit is contained in:
Philipp Zabel 2020-10-25 13:05:28 +01:00
parent fe8094b597
commit e6473a6edc
12 changed files with 30 additions and 30 deletions

View file

@ -104,7 +104,7 @@ class OpAlgoBase : public OpBase
* the barriers that ensure the memory has been copied before going in and
* out of the shader, as well as the dispatch operation that sends the
* shader processing to the gpu. This function also records the GPU memory
* copy of the output data for the staging bufffer so it can be read by the
* copy of the output data for the staging buffer so it can be read by the
* host.
*/
virtual void record() override;
@ -143,7 +143,7 @@ class OpAlgoBase : public OpBase
} // End namespace kp
// Including implemenation for template class
// Including implementation for template class
#ifndef OPALGOBASE_IMPL
#define OPALGOBASE_IMPL

View file

@ -63,7 +63,7 @@ class OpAlgoLhsRhsOut : public OpAlgoBase<tX, tY, tZ>
* the barriers that ensure the memory has been copied before going in and
* out of the shader, as well as the dispatch operation that sends the
* shader processing to the gpu. This function also records the GPU memory
* copy of the output data for the staging bufffer so it can be read by the
* copy of the output data for the staging buffer so it can be read by the
* host.
*/
virtual void record() override;
@ -87,7 +87,7 @@ class OpAlgoLhsRhsOut : public OpAlgoBase<tX, tY, tZ>
} // End namespace kp
// Including implemenation for template class
// Including implementation for template class
#ifndef OPALGOLHSRHSOUT_CPP
#define OPALGOLHSRHSOUT_CPP

View file

@ -40,7 +40,7 @@ class OpTensorCopy : public OpBase
void init() override;
/**
* Records the copy commands from teh first tensor into all the other tensors provided. Also optionally records a barrier.
* Records the copy commands from the first tensor into all the other tensors provided. Also optionally records a barrier.
*/
void record() override;