mirror of
https://github.com/smyalygames/FiniteVolumeGPU_HIP.git
synced 2025-05-18 06:24:11 +02:00
Merge branch 'porting-to-hip' of https://github.com/HichamAgueny/FiniteVolumeGPU_HIP into porting-to-hip
This commit is contained in:
commit
e188c8ea03
@ -24,7 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
from GPUSimulators import Simulator, Common
|
from GPUSimulators import Simulator, Common
|
||||||
from GPUSimulators.Simulator import BaseSimulator, BoundaryCondition
|
from GPUSimulators.Simulator import BaseSimulator, BoundaryCondition
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
import ctypes
|
||||||
#from pycuda import gpuarray
|
#from pycuda import gpuarray
|
||||||
from hip import hip,hiprtc
|
from hip import hip,hiprtc
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
from GPUSimulators import Simulator, Common
|
from GPUSimulators import Simulator, Common
|
||||||
from GPUSimulators.Simulator import BaseSimulator, BoundaryCondition
|
from GPUSimulators.Simulator import BaseSimulator, BoundaryCondition
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
import ctypes
|
||||||
|
|
||||||
#from pycuda import gpuarray
|
#from pycuda import gpuarray
|
||||||
from hip import hip,hiprtc
|
from hip import hip,hiprtc
|
||||||
|
@ -23,6 +23,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
from GPUSimulators import Simulator, Common
|
from GPUSimulators import Simulator, Common
|
||||||
from GPUSimulators.Simulator import BaseSimulator, BoundaryCondition
|
from GPUSimulators.Simulator import BaseSimulator, BoundaryCondition
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
import ctypes
|
||||||
|
|
||||||
#from pycuda import gpuarray
|
#from pycuda import gpuarray
|
||||||
from hip import hip,hiprtc
|
from hip import hip,hiprtc
|
||||||
@ -50,6 +51,20 @@ class HLL2 (Simulator.BaseSimulator):
|
|||||||
dt: Size of each timestep (90 s)
|
dt: Size of each timestep (90 s)
|
||||||
g: Gravitational accelleration (9.81 m/s^2)
|
g: Gravitational accelleration (9.81 m/s^2)
|
||||||
"""
|
"""
|
||||||
|
def hip_check(call_result):
|
||||||
|
err = call_result[0]
|
||||||
|
result = call_result[1:]
|
||||||
|
if len(result) == 1:
|
||||||
|
result = result[0]
|
||||||
|
if isinstance(err, hip.hipError_t) and err != hip.hipError_t.hipSuccess:
|
||||||
|
raise RuntimeError(str(err))
|
||||||
|
elif (
|
||||||
|
isinstance(err, hiprtc.hiprtcResult)
|
||||||
|
and err != hiprtc.hiprtcResult.HIPRTC_SUCCESS
|
||||||
|
):
|
||||||
|
raise RuntimeError(str(err))
|
||||||
|
return result
|
||||||
|
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
context,
|
context,
|
||||||
h0, hu0, hv0,
|
h0, hu0, hv0,
|
||||||
|
@ -28,6 +28,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
from GPUSimulators import Simulator, Common
|
from GPUSimulators import Simulator, Common
|
||||||
from GPUSimulators.Simulator import BaseSimulator, BoundaryCondition
|
from GPUSimulators.Simulator import BaseSimulator, BoundaryCondition
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
import ctypes
|
||||||
|
|
||||||
#from pycuda import gpuarray
|
#from pycuda import gpuarray
|
||||||
from hip import hip,hiprtc
|
from hip import hip,hiprtc
|
||||||
@ -51,6 +52,20 @@ class KP07 (Simulator.BaseSimulator):
|
|||||||
dt: Size of each timestep (90 s)
|
dt: Size of each timestep (90 s)
|
||||||
g: Gravitational accelleration (9.81 m/s^2)
|
g: Gravitational accelleration (9.81 m/s^2)
|
||||||
"""
|
"""
|
||||||
|
def hip_check(call_result):
|
||||||
|
err = call_result[0]
|
||||||
|
result = call_result[1:]
|
||||||
|
if len(result) == 1:
|
||||||
|
result = result[0]
|
||||||
|
if isinstance(err, hip.hipError_t) and err != hip.hipError_t.hipSuccess:
|
||||||
|
raise RuntimeError(str(err))
|
||||||
|
elif (
|
||||||
|
isinstance(err, hiprtc.hiprtcResult)
|
||||||
|
and err != hiprtc.hiprtcResult.HIPRTC_SUCCESS
|
||||||
|
):
|
||||||
|
raise RuntimeError(str(err))
|
||||||
|
return result
|
||||||
|
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
context,
|
context,
|
||||||
h0, hu0, hv0,
|
h0, hu0, hv0,
|
||||||
|
@ -28,6 +28,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
from GPUSimulators import Simulator, Common
|
from GPUSimulators import Simulator, Common
|
||||||
from GPUSimulators.Simulator import BaseSimulator, BoundaryCondition
|
from GPUSimulators.Simulator import BaseSimulator, BoundaryCondition
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
import ctypes
|
||||||
|
|
||||||
#from pycuda import gpuarray
|
#from pycuda import gpuarray
|
||||||
from hip import hip,hiprtc
|
from hip import hip,hiprtc
|
||||||
@ -52,6 +53,21 @@ class KP07_dimsplit(Simulator.BaseSimulator):
|
|||||||
dt: Size of each timestep (90 s)
|
dt: Size of each timestep (90 s)
|
||||||
g: Gravitational accelleration (9.81 m/s^2)
|
g: Gravitational accelleration (9.81 m/s^2)
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
def hip_check(call_result):
|
||||||
|
err = call_result[0]
|
||||||
|
result = call_result[1:]
|
||||||
|
if len(result) == 1:
|
||||||
|
result = result[0]
|
||||||
|
if isinstance(err, hip.hipError_t) and err != hip.hipError_t.hipSuccess:
|
||||||
|
raise RuntimeError(str(err))
|
||||||
|
elif (
|
||||||
|
isinstance(err, hiprtc.hiprtcResult)
|
||||||
|
and err != hiprtc.hiprtcResult.HIPRTC_SUCCESS
|
||||||
|
):
|
||||||
|
raise RuntimeError(str(err))
|
||||||
|
return result
|
||||||
|
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
context,
|
context,
|
||||||
h0, hu0, hv0,
|
h0, hu0, hv0,
|
||||||
|
@ -24,6 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
from GPUSimulators import Simulator, Common
|
from GPUSimulators import Simulator, Common
|
||||||
from GPUSimulators.Simulator import BaseSimulator, BoundaryCondition
|
from GPUSimulators.Simulator import BaseSimulator, BoundaryCondition
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
import ctypes
|
||||||
|
|
||||||
#from pycuda import gpuarray
|
#from pycuda import gpuarray
|
||||||
from hip import hip,hiprtc
|
from hip import hip,hiprtc
|
||||||
@ -49,6 +50,21 @@ class LxF (Simulator.BaseSimulator):
|
|||||||
dt: Size of each timestep (90 s)
|
dt: Size of each timestep (90 s)
|
||||||
g: Gravitational accelleration (9.81 m/s^2)
|
g: Gravitational accelleration (9.81 m/s^2)
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
def hip_check(call_result):
|
||||||
|
err = call_result[0]
|
||||||
|
result = call_result[1:]
|
||||||
|
if len(result) == 1:
|
||||||
|
result = result[0]
|
||||||
|
if isinstance(err, hip.hipError_t) and err != hip.hipError_t.hipSuccess:
|
||||||
|
raise RuntimeError(str(err))
|
||||||
|
elif (
|
||||||
|
isinstance(err, hiprtc.hiprtcResult)
|
||||||
|
and err != hiprtc.hiprtcResult.HIPRTC_SUCCESS
|
||||||
|
):
|
||||||
|
raise RuntimeError(str(err))
|
||||||
|
return result
|
||||||
|
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
context,
|
context,
|
||||||
h0, hu0, hv0,
|
h0, hu0, hv0,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user