- Moved HIP_INIT_API from internal to all public apis
- renamed hipLaunchModuleKernel to hipModuleLaunchKernel
- Changed tests according to the changed api

Change-Id: I822ff63c7c5b7dad340ece49456baf9d89428e9f
Αυτή η υποβολή περιλαμβάνεται σε:
Aditya Atluri
2016-08-28 16:48:57 -05:00
γονέας 5551b6c2f6
υποβολή 3d1bf4dbaf
4 αρχεία άλλαξαν με 11 προσθήκες και 11 διαγραφές
+1 -1
Προβολή Αρχείου
@@ -71,7 +71,7 @@ int main(){
HIP_LAUNCH_PARAM_END
};
hipLaunchModuleKernel(Function, 1, 1, 1, LEN, 1, 1, 0, stream, NULL, (void**)&config);
hipModuleLaunchKernel(Function, 1, 1, 1, LEN, 1, 1, 0, stream, NULL, (void**)&config);
hipStreamDestroy(stream);
@@ -24,7 +24,7 @@ THE SOFTWARE.
#define fileName "vcpy_isa.co"
int main(){
hipModule module;
hipModule_t module;
hipModuleLoad(&module, fileName);
hipModuleUnload(module);
}