Skip to content
Snippets Groups Projects
AddImageWith.m 240 B
Newer Older
Eric Wait's avatar
Eric Wait committed
function [cTime,mTime,kernelName] = AddImageWith(im)
    kernelName = 'AddImageWith';
    cT = tic;
    imC = HIP.AddImageWith(im,im,2);
Eric Wait's avatar
Eric Wait committed
    cTime = toc(cT);

    mT = tic;
    imM = HIP.AddImageWith(im,im,2,true);
Eric Wait's avatar
Eric Wait committed
    mTime = toc(mT);