Advertisement
mahmoodn

Untitled

Nov 4th, 2021
1,182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.90 KB | None | 0 0
  1. $ git clone -b dev https://github.com/accel-sim/accel-sim-framework
  2. Cloning into 'accel-sim-framework'...
  3. remote: Enumerating objects: 6723, done.
  4. remote: Counting objects: 100% (439/439), done.
  5. remote: Compressing objects: 100% (246/246), done.
  6. remote: Total 6723 (delta 235), reused 358 (delta 186), pack-reused 6284
  7. Receiving objects: 100% (6723/6723), 376.46 MiB | 10.94 MiB/s, done.
  8. Resolving deltas: 100% (4035/4035), done.
  9.  
  10.  
  11.  
  12. $ cd accel-sim-framework/
  13. $ source ./gpu-simulator/setup_environment.sh
  14. Cloning into '/home/mahmood/test/accel-sim-framework/gpu-simulator/gpgpu-sim'...
  15. remote: Enumerating objects: 16881, done.
  16. remote: Counting objects: 100% (985/985), done.
  17. remote: Compressing objects: 100% (394/394), done.
  18. remote: Total 16881 (delta 720), reused 810 (delta 591), pack-reused 15896
  19. Receiving objects: 100% (16881/16881), 34.92 MiB | 10.29 MiB/s, done.
  20. Resolving deltas: 100% (11953/11953), done.
  21. Already on 'dev'
  22. Your branch is up to date with 'origin/dev'.
  23. GPGPU-Sim version 4.1.0 (build gpgpu-sim_git-commit-84c4f46fb78b529ab2447d7a676f5b3ac2d9c05f-modified_568.0) configured with GPUWattch.
  24.  
  25. ----------------------------------------------------------------------------
  26. INFO - If you only care about PTX execution, ignore this message. GPGPU-Sim supports PTX execution in modern CUDA.
  27. If you want to run PTXPLUS (sm_1x SASS) with a modern card configuration - set the envronment variable
  28. $PTXAS_CUDA_INSTALL_PATH to point a CUDA version compabible with your card configurations (i.e. 8+ for PASCAL, 9+ for VOLTA etc..)
  29. For example: "export $PTXAS_CUDA_INSTALL_PATH=/usr/local/cuda-9.1"
  30.  
  31. The following text describes why:
  32. If you are using PTXPLUS, only sm_1x is supported and it requires that the app and simulator binaries are compiled in CUDA 4.2 or less.
  33. The simulator requires it since CUDA headers desribe struct sizes in the exec which change from gen to gen.
  34. The apps require 4.2 because new versions of CUDA tools have dropped parsing support for generating sm_1x
  35. When running using modern config (i.e. volta) and PTXPLUS with CUDA 4.2, the $PTXAS_CUDA_INSTALL_PATH env variable is required to get proper register usage
  36. (and hence occupancy) using a version of CUDA that knows the register usage on the real card.
  37.  
  38. ----------------------------------------------------------------------------
  39. setup_environment succeeded
  40.  
  41.  
  42.  
  43.  
  44. $ git push  https://privategithub/mahmood/accelsim-chiplet
  45. Username for 'https://privategithub': mahmood
  46. Password for 'https://mahmood@privategithub':
  47. Enumerating objects: 5379, done.
  48. Counting objects: 100% (5379/5379), done.
  49. Delta compression using up to 16 threads
  50. Compressing objects: 100% (1902/1902), done.
  51. Writing objects: 100% (5379/5379), 920.79 KiB | 153.46 MiB/s, done.
  52. Total 5379 (delta 3368), reused 5379 (delta 3368)
  53. remote: Resolving deltas: 100% (3368/3368), done.
  54. To https://privategithub/mahmood/accelsim-chiplet
  55.  * [new branch]      dev -> dev
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement