기억저장고

Unity GPU마다 exe 프로그램 할당하는법 본문

Unity

Unity GPU마다 exe 프로그램 할당하는법

기억해조 2022. 11. 14. 15:59

조건

1. cmd로 호출

 

cmd로 프로그램 경로까지 이동 후

myBuildFile.exe -force-device-index 1

이런식으로 써주면된다

 

맨 뒤에 숫자는 실행할 GPU index인데

 

메인 GPU는 0번인거 같고

 

나머지는 작업관리자-성능의 GPU 거꾸로 순서인듯하다

ex)GPU가 7번까지 있으면 index 1이 7번 GPU를 가르키는거같은데 이건 자세히 모르겠다

 

출처

https://docs.unity3d.com/Manual/PlayerCommandLineArguments.html

 

Unity - Manual: Unity Standalone Player command line arguments

Unity Editor command line arguments Batch mode and built-in coroutine compatibility Unity Standalone Player command line arguments You can launch Unity Players from the command line and pass in arguments to change how the Player executes. These arguments w

docs.unity3d.com

 

Comments