Skip to content
Snippets Groups Projects
Commit 5e08b58b authored by Hashim Sharif's avatar Hashim Sharif
Browse files

Moving print msg to DEBUG macro

parent b24bd55d
No related branches found
No related tags found
No related merge requests found
......@@ -116,7 +116,7 @@ void allocateMem(struct Tensor* tensor, int data_type, size_t num_elems){
tensor->host_data = (void*) malloc(size_on_host); // Allocate memory on the host
tensor->data_placement = HOST; // By defaut data is on the host
//printf("Allocating Sizes = %lu \n", tensor->size_in_bytes);
DEBUG("Attempting to Allocate = %lu \n\n\n", tensor->size_in_bytes);
if (isFP16Compound(data_type)) {
// Allocate FP16-like
......
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