Created
July 8, 2019 22:20
-
-
Save r7vme/c27880cdd78ba193a9630d2c6012e1e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int L2NormHelper::enqueue(int batchSize, const void* const* inputs, void** outputs, void* workspace, cudaStream_t stream) | |
{ | |
const void* inputData = inputs[0]; | |
void* outputData = outputs[0]; | |
bool status = executeInference(stream, op_type, eps, batchSize, C, H, W, inputData, outputData); | |
ASSERT(status == 0); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment