Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. int L2NormHelper::enqueue(int batchSize, const void* const* inputs, void** outputs, void* workspace, cudaStream_t stream)
  2. {
  3. const void* inputData = inputs[0];
  4. void* outputData = outputs[0];
  5. bool status = executeInference(stream, op_type, eps, batchSize, C, H, W, inputData, outputData);
  6. ASSERT(status == 0);
  7. return 0;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement