https://github.com/N-BodyShop/changa
Revision 1a58a05e378186ae657a4ede9cfff00362485aef authored by Tom Quinn on 07 August 2018, 23:09:30 UTC, committed by Tim Haines on 02 October 2018, 06:15:11 UTC
This allows larger than 2GB buffers to be allocated for the GPU.
Also use size_t in GPU Transfer functions.

Change-Id: I36bb3ec4156e4f7790ad24d0fc172b134a196c7e
1 parent b6ba8d6
Raw File
Tip revision: 1a58a05e378186ae657a4ede9cfff00362485aef authored by Tom Quinn on 07 August 2018, 23:09:30 UTC
allocatePinnedHostMemory(): use size_t.
Tip revision: 1a58a05
.emacs
(setq-default c-basic-offset 4)
(defun my-c-mode-common-hook ()
       ;; my customizations for all of c-mode, c++-mode, objc-mode, java-mode
       ;  JST's style
  	(setq c-basic-offset 4)
       (c-set-offset 'block-close '+)
       (c-set-offset 'defun-close '+)
       (c-set-offset 'class-close '+)
       (auto-fill-mode 1)
       (hilit-highlight-buffer)
       )
(add-hook 'c-mode-common-hook 'my-c-mode-common-hook)
back to top