Added another parameter to GEMV

This commit is contained in:
Philippe Tillet
2015-02-10 16:33:38 -05:00
parent 37fc98c532
commit 85b7eb8b5e
6 changed files with 292 additions and 173 deletions

View File

@@ -254,8 +254,8 @@ model_map_t init_models(cl::CommandQueue & queue)
res[std::make_pair(MATRIX_PRODUCT_NT_TYPE, DTYPE)] = ptr_t(new model(mproduct_nt(1, 8, 8, 8, 4, 1, 4, FETCH_FROM_LOCAL, FETCH_FROM_LOCAL, 8, 8), queue));
res[std::make_pair(MATRIX_PRODUCT_TT_TYPE, DTYPE)] = ptr_t(new model(mproduct_tt(1, 8, 8, 8, 4, 1, 4, FETCH_FROM_LOCAL, FETCH_FROM_LOCAL, 8, 8), queue));
}
if(const char * homepath = std::getenv("HOME"))
import(std::string(homepath) + "/.atidlas/devices/device0.json", queue, res);
// if(const char * homepath = std::getenv("HOME"))
// import(std::string(homepath) + "/.atidlas/devices/device0.json", queue, res);
return res;
}