Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "rsCpuCore.h" |
| 18 | #include "rsCpuScript.h" |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 19 | #include "rsScriptGroup.h" |
| 20 | #include "rsCpuScriptGroup.h" |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 21 | |
| 22 | using namespace android; |
| 23 | using namespace android::renderscript; |
| 24 | |
Yang Ni | 1ffd86b | 2015-01-07 09:16:40 -0800 | [diff] [blame] | 25 | CpuScriptGroupImpl::CpuScriptGroupImpl(RsdCpuReferenceImpl *ctx, const ScriptGroupBase *sg) { |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 26 | mCtx = ctx; |
Yang Ni | 1ffd86b | 2015-01-07 09:16:40 -0800 | [diff] [blame] | 27 | mSG = (ScriptGroup*)sg; |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | CpuScriptGroupImpl::~CpuScriptGroupImpl() { |
| 31 | |
| 32 | } |
| 33 | |
| 34 | bool CpuScriptGroupImpl::init() { |
| 35 | return true; |
| 36 | } |
| 37 | |
| 38 | void CpuScriptGroupImpl::setInput(const ScriptKernelID *kid, Allocation *a) { |
| 39 | } |
| 40 | |
| 41 | void CpuScriptGroupImpl::setOutput(const ScriptKernelID *kid, Allocation *a) { |
| 42 | } |
| 43 | |
| 44 | |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 45 | typedef void (*ScriptGroupRootFunc_t)(const RsExpandKernelDriverInfo *kinfo, |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 46 | uint32_t xstart, uint32_t xend, |
Chris Wailes | 9ed7910 | 2014-07-25 15:53:28 -0700 | [diff] [blame] | 47 | uint32_t outstep); |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 48 | |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 49 | void CpuScriptGroupImpl::scriptGroupRoot(const RsExpandKernelDriverInfo *kinfo, |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 50 | uint32_t xstart, uint32_t xend, |
Chris Wailes | 9ed7910 | 2014-07-25 15:53:28 -0700 | [diff] [blame] | 51 | uint32_t outstep) { |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 52 | |
| 53 | |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 54 | const ScriptList *sl = (const ScriptList *)kinfo->usr; |
| 55 | RsExpandKernelDriverInfo *mkinfo = const_cast<RsExpandKernelDriverInfo *>(kinfo); |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 56 | |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 57 | const uint32_t oldInStride = mkinfo->inStride[0]; |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 58 | |
Chris Wailes | 80ef693 | 2014-07-08 11:22:18 -0700 | [diff] [blame] | 59 | for (size_t ct = 0; ct < sl->count; ct++) { |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 60 | ScriptGroupRootFunc_t func; |
Chris Wailes | 80ef693 | 2014-07-08 11:22:18 -0700 | [diff] [blame] | 61 | func = (ScriptGroupRootFunc_t)sl->fnPtrs[ct]; |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 62 | mkinfo->usr = sl->usrPtrs[ct]; |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 63 | |
Stephen Hines | 4b2bea3 | 2014-08-13 17:32:10 +0000 | [diff] [blame] | 64 | if (sl->ins[ct]) { |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 65 | rsAssert(kinfo->inLen == 1); |
Stephen Hines | 4b2bea3 | 2014-08-13 17:32:10 +0000 | [diff] [blame] | 66 | |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 67 | mkinfo->inPtr[0] = (const uint8_t *)sl->ins[ct]->mHal.drvState.lod[0].mallocPtr; |
| 68 | |
| 69 | mkinfo->inStride[0] = sl->ins[ct]->mHal.state.elementSizeBytes; |
Chris Wailes | 80ef693 | 2014-07-08 11:22:18 -0700 | [diff] [blame] | 70 | |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 71 | if (sl->inExts[ct]) { |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 72 | mkinfo->inPtr[0] = |
| 73 | (mkinfo->inPtr[0] + |
| 74 | sl->ins[ct]->mHal.drvState.lod[0].stride * kinfo->current.y); |
Chris Wailes | 80ef693 | 2014-07-08 11:22:18 -0700 | [diff] [blame] | 75 | |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 76 | } else if (sl->ins[ct]->mHal.drvState.lod[0].dimY > kinfo->lid) { |
| 77 | mkinfo->inPtr[0] = |
| 78 | (mkinfo->inPtr[0] + |
| 79 | sl->ins[ct]->mHal.drvState.lod[0].stride * kinfo->lid); |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 80 | } |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 81 | |
| 82 | } else { |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 83 | rsAssert(kinfo->inLen == 0); |
| 84 | |
| 85 | mkinfo->inPtr[0] = nullptr; |
| 86 | mkinfo->inStride[0] = 0; |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 87 | } |
| 88 | |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 89 | uint32_t ostep; |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 90 | if (sl->outs[ct]) { |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 91 | rsAssert(kinfo->outLen == 1); |
| 92 | |
| 93 | mkinfo->outPtr[0] = |
Chris Wailes | 80ef693 | 2014-07-08 11:22:18 -0700 | [diff] [blame] | 94 | (uint8_t *)sl->outs[ct]->mHal.drvState.lod[0].mallocPtr; |
| 95 | |
Jason Sams | 17e3cdc | 2013-09-09 17:32:16 -0700 | [diff] [blame] | 96 | ostep = sl->outs[ct]->mHal.state.elementSizeBytes; |
Chris Wailes | 80ef693 | 2014-07-08 11:22:18 -0700 | [diff] [blame] | 97 | |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 98 | if (sl->outExts[ct]) { |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 99 | mkinfo->outPtr[0] = |
| 100 | mkinfo->outPtr[0] + |
| 101 | sl->outs[ct]->mHal.drvState.lod[0].stride * kinfo->current.y; |
Chris Wailes | 80ef693 | 2014-07-08 11:22:18 -0700 | [diff] [blame] | 102 | |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 103 | } else if (sl->outs[ct]->mHal.drvState.lod[0].dimY > kinfo->lid) { |
| 104 | mkinfo->outPtr[0] = |
| 105 | mkinfo->outPtr[0] + |
| 106 | sl->outs[ct]->mHal.drvState.lod[0].stride * kinfo->lid; |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 107 | } |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 108 | } else { |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 109 | rsAssert(kinfo->outLen == 0); |
| 110 | |
| 111 | mkinfo->outPtr[0] = nullptr; |
| 112 | ostep = 0; |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | //ALOGE("kernel %i %p,%p %p,%p", ct, mp->ptrIn, mp->in, mp->ptrOut, mp->out); |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 116 | func(kinfo, xstart, xend, ostep); |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 117 | } |
| 118 | //ALOGE("script group root"); |
| 119 | |
David Gross | b0abb14 | 2015-03-12 15:23:03 -0700 | [diff] [blame] | 120 | mkinfo->inStride[0] = oldInStride; |
| 121 | mkinfo->usr = sl; |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | |
| 125 | |
| 126 | void CpuScriptGroupImpl::execute() { |
Yang Ni | b8353c5 | 2015-02-14 18:00:59 -0800 | [diff] [blame] | 127 | Vector<Allocation *> ins; |
| 128 | Vector<bool> inExts; |
| 129 | Vector<Allocation *> outs; |
| 130 | Vector<bool> outExts; |
| 131 | Vector<const ScriptKernelID *> kernels; |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 132 | bool fieldDep = false; |
| 133 | |
| 134 | for (size_t ct=0; ct < mSG->mNodes.size(); ct++) { |
| 135 | ScriptGroup::Node *n = mSG->mNodes[ct]; |
| 136 | Script *s = n->mKernels[0]->mScript; |
Stephen Hines | c78839b | 2013-09-10 17:40:41 -0700 | [diff] [blame] | 137 | if (s->hasObjectSlots()) { |
| 138 | // Disable the ScriptGroup optimization if we have global RS |
| 139 | // objects that might interfere between kernels. |
| 140 | fieldDep = true; |
| 141 | } |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 142 | |
| 143 | //ALOGE("node %i, order %i, in %i out %i", (int)ct, n->mOrder, (int)n->mInputs.size(), (int)n->mOutputs.size()); |
| 144 | |
| 145 | for (size_t ct2=0; ct2 < n->mInputs.size(); ct2++) { |
| 146 | if (n->mInputs[ct2]->mDstField.get() && n->mInputs[ct2]->mDstField->mScript) { |
| 147 | //ALOGE("field %p %zu", n->mInputs[ct2]->mDstField->mScript, n->mInputs[ct2]->mDstField->mSlot); |
| 148 | s->setVarObj(n->mInputs[ct2]->mDstField->mSlot, n->mInputs[ct2]->mAlloc.get()); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | for (size_t ct2=0; ct2 < n->mKernels.size(); ct2++) { |
| 153 | const ScriptKernelID *k = n->mKernels[ct2]; |
Chris Wailes | 44bef6f | 2014-08-12 13:51:10 -0700 | [diff] [blame] | 154 | Allocation *ain = nullptr; |
| 155 | Allocation *aout = nullptr; |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 156 | bool inExt = false; |
| 157 | bool outExt = false; |
| 158 | |
| 159 | for (size_t ct3=0; ct3 < n->mInputs.size(); ct3++) { |
| 160 | if (n->mInputs[ct3]->mDstKernel.get() == k) { |
| 161 | ain = n->mInputs[ct3]->mAlloc.get(); |
Yang Ni | 5f6f16f | 2014-07-25 13:51:09 -0700 | [diff] [blame] | 162 | break; |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 163 | } |
| 164 | } |
Chris Wailes | 44bef6f | 2014-08-12 13:51:10 -0700 | [diff] [blame] | 165 | if (ain == nullptr) { |
Yang Ni | 5f6f16f | 2014-07-25 13:51:09 -0700 | [diff] [blame] | 166 | for (size_t ct3=0; ct3 < mSG->mInputs.size(); ct3++) { |
| 167 | if (mSG->mInputs[ct3]->mKernel == k) { |
| 168 | ain = mSG->mInputs[ct3]->mAlloc.get(); |
| 169 | inExt = true; |
| 170 | break; |
| 171 | } |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 172 | } |
| 173 | } |
| 174 | |
| 175 | for (size_t ct3=0; ct3 < n->mOutputs.size(); ct3++) { |
| 176 | if (n->mOutputs[ct3]->mSource.get() == k) { |
| 177 | aout = n->mOutputs[ct3]->mAlloc.get(); |
Chris Wailes | 44bef6f | 2014-08-12 13:51:10 -0700 | [diff] [blame] | 178 | if(n->mOutputs[ct3]->mDstField.get() != nullptr) { |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 179 | fieldDep = true; |
| 180 | } |
Yang Ni | 5f6f16f | 2014-07-25 13:51:09 -0700 | [diff] [blame] | 181 | break; |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 182 | } |
| 183 | } |
Chris Wailes | 44bef6f | 2014-08-12 13:51:10 -0700 | [diff] [blame] | 184 | if (aout == nullptr) { |
Yang Ni | 5f6f16f | 2014-07-25 13:51:09 -0700 | [diff] [blame] | 185 | for (size_t ct3=0; ct3 < mSG->mOutputs.size(); ct3++) { |
| 186 | if (mSG->mOutputs[ct3]->mKernel == k) { |
| 187 | aout = mSG->mOutputs[ct3]->mAlloc.get(); |
| 188 | outExt = true; |
| 189 | break; |
| 190 | } |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 191 | } |
| 192 | } |
| 193 | |
Chris Wailes | 44bef6f | 2014-08-12 13:51:10 -0700 | [diff] [blame] | 194 | rsAssert((k->mHasKernelOutput == (aout != nullptr)) && |
| 195 | (k->mHasKernelInput == (ain != nullptr))); |
Yang Ni | 5f6f16f | 2014-07-25 13:51:09 -0700 | [diff] [blame] | 196 | |
Yang Ni | b8353c5 | 2015-02-14 18:00:59 -0800 | [diff] [blame] | 197 | ins.add(ain); |
| 198 | inExts.add(inExt); |
| 199 | outs.add(aout); |
| 200 | outExts.add(outExt); |
| 201 | kernels.add(k); |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | } |
| 205 | |
| 206 | MTLaunchStruct mtls; |
| 207 | |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 208 | if (fieldDep) { |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 209 | for (size_t ct=0; ct < ins.size(); ct++) { |
| 210 | Script *s = kernels[ct]->mScript; |
| 211 | RsdCpuScriptImpl *si = (RsdCpuScriptImpl *)mCtx->lookupScript(s); |
| 212 | uint32_t slot = kernels[ct]->mSlot; |
| 213 | |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 214 | uint32_t inLen; |
| 215 | const Allocation **ains; |
| 216 | |
Chris Wailes | 44bef6f | 2014-08-12 13:51:10 -0700 | [diff] [blame] | 217 | if (ins[ct] == nullptr) { |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 218 | inLen = 0; |
Chris Wailes | 44bef6f | 2014-08-12 13:51:10 -0700 | [diff] [blame] | 219 | ains = nullptr; |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 220 | |
| 221 | } else { |
| 222 | inLen = 1; |
| 223 | ains = const_cast<const Allocation**>(&ins[ct]); |
| 224 | } |
| 225 | |
Jason Sams | bf2111d | 2015-01-26 18:13:41 -0800 | [diff] [blame] | 226 | bool launchOK = si->forEachMtlsSetup(ains, inLen, outs[ct], nullptr, 0, nullptr, &mtls); |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 227 | |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 228 | si->forEachKernelSetup(slot, &mtls); |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 229 | si->preLaunch(slot, ains, inLen, outs[ct], mtls.fep.usr, |
Chris Wailes | 44bef6f | 2014-08-12 13:51:10 -0700 | [diff] [blame] | 230 | mtls.fep.usrLen, nullptr); |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 231 | |
Jason Sams | bf2111d | 2015-01-26 18:13:41 -0800 | [diff] [blame] | 232 | if (launchOK) { |
| 233 | mCtx->launchThreads(ains, inLen, outs[ct], nullptr, &mtls); |
| 234 | } |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 235 | |
Chris Wailes | 44bef6f | 2014-08-12 13:51:10 -0700 | [diff] [blame] | 236 | si->postLaunch(slot, ains, inLen, outs[ct], nullptr, 0, nullptr); |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 237 | } |
| 238 | } else { |
| 239 | ScriptList sl; |
Yang Ni | b8353c5 | 2015-02-14 18:00:59 -0800 | [diff] [blame] | 240 | sl.ins = ins.array(); |
| 241 | sl.outs = outs.array(); |
| 242 | sl.kernels = kernels.array(); |
| 243 | sl.count = kernels.size(); |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 244 | |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 245 | uint32_t inLen; |
| 246 | const Allocation **ains; |
| 247 | |
Chris Wailes | 44bef6f | 2014-08-12 13:51:10 -0700 | [diff] [blame] | 248 | if (ins[0] == nullptr) { |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 249 | inLen = 0; |
Chris Wailes | 44bef6f | 2014-08-12 13:51:10 -0700 | [diff] [blame] | 250 | ains = nullptr; |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 251 | |
| 252 | } else { |
| 253 | inLen = 1; |
| 254 | ains = const_cast<const Allocation**>(&ins[0]); |
| 255 | } |
| 256 | |
Yang Ni | b8353c5 | 2015-02-14 18:00:59 -0800 | [diff] [blame] | 257 | Vector<const void *> usrPtrs; |
| 258 | Vector<const void *> fnPtrs; |
| 259 | Vector<uint32_t> sigs; |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 260 | for (size_t ct=0; ct < kernels.size(); ct++) { |
| 261 | Script *s = kernels[ct]->mScript; |
| 262 | RsdCpuScriptImpl *si = (RsdCpuScriptImpl *)mCtx->lookupScript(s); |
| 263 | |
| 264 | si->forEachKernelSetup(kernels[ct]->mSlot, &mtls); |
Yang Ni | b8353c5 | 2015-02-14 18:00:59 -0800 | [diff] [blame] | 265 | fnPtrs.add((void *)mtls.kernel); |
| 266 | usrPtrs.add(mtls.fep.usr); |
| 267 | sigs.add(mtls.fep.usrLen); |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 268 | si->preLaunch(kernels[ct]->mSlot, ains, inLen, outs[ct], |
Chris Wailes | 44bef6f | 2014-08-12 13:51:10 -0700 | [diff] [blame] | 269 | mtls.fep.usr, mtls.fep.usrLen, nullptr); |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 270 | } |
Yang Ni | b8353c5 | 2015-02-14 18:00:59 -0800 | [diff] [blame] | 271 | sl.sigs = sigs.array(); |
| 272 | sl.usrPtrs = usrPtrs.array(); |
| 273 | sl.fnPtrs = fnPtrs.array(); |
| 274 | sl.inExts = inExts.array(); |
| 275 | sl.outExts = outExts.array(); |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 276 | |
| 277 | Script *s = kernels[0]->mScript; |
| 278 | RsdCpuScriptImpl *si = (RsdCpuScriptImpl *)mCtx->lookupScript(s); |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 279 | |
Jason Sams | bf2111d | 2015-01-26 18:13:41 -0800 | [diff] [blame] | 280 | if (si->forEachMtlsSetup(ains, inLen, outs[0], nullptr, 0, nullptr, &mtls)) { |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 281 | |
Jason Sams | bf2111d | 2015-01-26 18:13:41 -0800 | [diff] [blame] | 282 | mtls.script = nullptr; |
| 283 | mtls.kernel = (void (*)())&scriptGroupRoot; |
| 284 | mtls.fep.usr = &sl; |
Chris Wailes | f371213 | 2014-07-16 15:18:30 -0700 | [diff] [blame] | 285 | |
Jason Sams | bf2111d | 2015-01-26 18:13:41 -0800 | [diff] [blame] | 286 | mCtx->launchThreads(ains, inLen, outs[0], nullptr, &mtls); |
| 287 | } |
Jason Sams | 17e3cdc | 2013-09-09 17:32:16 -0700 | [diff] [blame] | 288 | |
| 289 | for (size_t ct=0; ct < kernels.size(); ct++) { |
| 290 | Script *s = kernels[ct]->mScript; |
| 291 | RsdCpuScriptImpl *si = (RsdCpuScriptImpl *)mCtx->lookupScript(s); |
Chris Wailes | 44bef6f | 2014-08-12 13:51:10 -0700 | [diff] [blame] | 292 | si->postLaunch(kernels[ct]->mSlot, ains, inLen, outs[ct], nullptr, 0, |
| 293 | nullptr); |
Jason Sams | 17e3cdc | 2013-09-09 17:32:16 -0700 | [diff] [blame] | 294 | } |
Jason Sams | 709a097 | 2012-11-15 18:18:04 -0800 | [diff] [blame] | 295 | } |
| 296 | } |