Recent content by Tasneem AbuQutaish

  1. T

    Write Single Thread program in Posix Thread

    i need to write a single thread program using Posix thread, to compare with multi thread program. so if i want to write a Pthread program running a single(One) thread, do i : - use "create thread" to create one thread , Or - dont create any thread and just depend on the main thread program, as...
  2. T

    GPU Cache Line Size

    Many Thanks, just downloaded and gave me cool information, but not the cache size,.. unless im reading it wrong, i just want to know my L1 cache size and L2 cache size,.. thanks
  3. T

    GPU Cache Line Size

    I have on my laptop Nvidia GTX 850M , im trying to get my cache line size but cant find this information, tried using the tools cpu_z from link http://www.cpuid.com/softwares/cpu-z.html & also GPU Caps Viewer, but noticed : - the cache line info isnt mentioned, - there is difference in the...
  4. T

    CUDA Memory Transpose

    great many thanks really helped,. so only choice to subdivide the matrix ! thanks for the help
  5. T

    CUDA Memory Transpose

    Im applying matrix Transpose program on My PC with GTX850M, i used the transpose in this blog : http://devblogs.nvidia.com/parallelforall/efficient-matrix-transpose-cuda-cc/ But i want to implement huge sizes of matrix up to 20000 and 30000,.. but i get error out of memory,.. is it related to my...