Skip to content
Snippets Groups Projects
Commit 973c1378 authored by Akash Kothari's avatar Akash Kothari
Browse files

Remove an error in switch-case statement for updating tags in HPVMUtils

parent b788846e
No related branches found
No related tags found
No related merge requests found
......@@ -432,8 +432,7 @@ hpvm::Target getUpdatedTag(hpvm::Target Tag, hpvm::Target T) {
return T;
case hpvm::CPU_OR_GPU_TARGET:
assert((T != hpvm::CUDNN_TARGET) && "Unsupported target combination\n");
return hpvm::CPU_OR_GPU_TARGET;
case
return hpvm::CPU_OR_GPU_TARGET;
default:
assert(false && "Unknown Target\n");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment