Home
last modified time | relevance | path

Searched refs:newKernel (Results 1 – 12 of 12) sorted by relevance

/dports/science/jdftx/jdftx-1.6.0/jdftx/fluid/
H A DMolecule.cpp138 std::vector<double> newKernel; in setup() local
141 newKernel.push_back(elecKernel(G)+KernelG(G)); in setup()
143 elecKernel.init(0,newKernel,dG); //reinitialize elecKernel with new radial function added on. in setup()
191 std::vector<double> newKernel; in setup() local
194 newKernel.push_back(elecKernel(G)+KernelG(G)); in setup()
196 elecKernel.init(0,newKernel,dG); //reinitialize elecKernel with new radial function added on. in setup()
/dports/multimedia/libva-intel-media-driver/media-driver-intel-media-22.1.1/media_driver/agnostic/common/vp/hal/
H A Dvphal_mdf_wrapper.cpp167 CmKernel *newKernel = nullptr; in CloneKernel() local
168 int result = mCmDevice->CloneKernel(newKernel, kernel); in CloneKernel()
175 mKernelsToPurge.push_back(newKernel); in CloneKernel()
176 return newKernel; in CloneKernel()
/dports/multimedia/cmrtlib/media-driver-intel-media-20.1.1/media_driver/agnostic/common/vp/hal/
H A Dvphal_mdf_wrapper.cpp167 CmKernel *newKernel = nullptr; in CloneKernel() local
168 int result = mCmDevice->CloneKernel(newKernel, kernel); in CloneKernel()
175 mKernelsToPurge.push_back(newKernel); in CloneKernel()
176 return newKernel; in CloneKernel()
/dports/devel/ispc/ispc-1.16.1/ispcrt/detail/
H A DDevice.h27 virtual Kernel *newKernel(const Module &module, const char *name) const = 0;
/dports/devel/ispc/ispc-1.16.1/ispcrt/detail/cpu/
H A DCPUDevice.h27 base::Kernel *newKernel(const base::Module &module, const char *name) const override;
H A DCPUDevice.cpp205 ispcrt::base::Kernel *CPUDevice::newKernel(const ispcrt::base::Module &module, const char *name) co… in newKernel() function in ispcrt::CPUDevice
/dports/devel/ispc/ispc-1.16.1/ispcrt/detail/gpu/
H A DGPUDevice.h33 base::Kernel *newKernel(const base::Module &module, const char *name) const override;
H A DGPUDevice.cpp673 base::Kernel *GPUDevice::newKernel(const base::Module &module, const char *name) const { in newKernel() function in ispcrt::GPUDevice
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/GPUCommon/src/
H A DitkGPUKernelManager.cxx233 cl_kernel newKernel = clCreateKernel(m_Program, kernelName, &errid); in CreateKernel() local
243 m_KernelContainer.push_back( newKernel ); in CreateKernel()
248 errid = clGetKernelInfo( newKernel, CL_KERNEL_NUM_ARGS, sizeof(cl_uint), &nArg, nullptr); in CreateKernel()
/dports/lang/pocl/pocl-1.8/lib/CL/devices/tce/
H A Dtce_common.cc272 bool newKernel = true; in isNewKernel() local
276 newKernel = true; in isNewKernel()
278 newKernel = false; in isNewKernel()
279 return newKernel; in isNewKernel()
/dports/math/clblas/clBLAS-2.10/src/library/blas/AutoGemm/
H A DKernelSelection.py514 def newKernel(self, kernel): member in KernelSelectionSpecific
657 kss.newKernel(kernel)
/dports/devel/ispc/ispc-1.16.1/ispcrt/
H A Dispcrt.cpp234 return (ISPCRTKernel)device.newKernel(module, name); in ISPCRT_CATCH_END()