Moved new convgemm kernel to levelx kernel folder

pull/319/head
Cedric Nugteren 2018-05-19 21:05:45 +02:00
parent 27b52ac2c8
commit 37cabd4f1f
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
// Cedric Nugteren <www.cedricnugteren.nl>
//
// This file contains the an implementation of 3D convolution on a 4D image using GEMM kernels. It
// uses parameters from the direct GEMM kernel.
// uses parameters from the direct GEMM kernel. This part contains the main kernel (2/2).
//
// =================================================================================================

View File

@ -32,7 +32,7 @@ Xconvgemm<T>::Xconvgemm(Queue &queue, EventPointer event, const std::string &nam
#include "../../kernels/level3/xgemm_direct_part3.opencl"
, // separated in multiple parts to prevent C1091 in MSVC 2013
#include "../../kernels/levelx/xconvgemm_part1.opencl"
#include "../../kernels/level3/xconvgemm.opencl"
#include "../../kernels/levelx/xconvgemm_part2.opencl"
}) {
}