File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1952,11 +1952,11 @@ size_t Kernel::getInstructionHeapSizeForExecutionModel() const {
19521952
19531953 size_t totalSize = 0 ;
19541954 if (isParentKernel) {
1955- totalSize = kernelBinaryAlignement - 1 ; // for initial alignment
1955+ totalSize = kernelBinaryAlignment - 1 ; // for initial alignment
19561956 for (uint32_t i = 0 ; i < blockCount; i++) {
19571957 const KernelInfo *pBlockInfo = blockManager->getBlockKernelInfo (i);
19581958 totalSize += pBlockInfo->heapInfo .KernelHeapSize ;
1959- totalSize = alignUp (totalSize, kernelBinaryAlignement );
1959+ totalSize = alignUp (totalSize, kernelBinaryAlignment );
19601960 }
19611961 }
19621962 return totalSize;
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class MultiDeviceKernel;
4343
4444class Kernel : public ReferenceTrackedObject <Kernel> {
4545 public:
46- static const uint32_t kernelBinaryAlignement = 64 ;
46+ static const uint32_t kernelBinaryAlignment = 64 ;
4747
4848 enum kernelArgType {
4949 NONE_OBJ,
You can’t perform that action at this time.
0 commit comments