rocr: Use SVM information to separate dev heap

Use SVM information from user accessible memory

Change-Id: I8fad37eb1a90dc1f5827a096552130a3fd6187f4
このコミットが含まれているのは:
Yiannis Papadopoulos
2024-12-18 17:16:57 -05:00
committed by David Yat Sin
コミット 144e7674d1
2個のファイルの変更15行の追加10行の削除
+3 -2
ファイルの表示
@@ -198,7 +198,8 @@ XdnaDriver::AllocateMemory(const core::MemoryRegion &mem_region,
return HSA_STATUS_ERROR_INVALID_REGION;
}
if (m_region.kernarg()) {
const bool use_bo_shmem = m_region.kernarg() || m_region.IsSystemButNotSVM();
if (use_bo_shmem) {
create_bo_args.type = AMDXDNA_BO_SHMEM;
} else {
create_bo_args.type = AMDXDNA_BO_DEV;
@@ -222,7 +223,7 @@ XdnaDriver::AllocateMemory(const core::MemoryRegion &mem_region,
/// TODO: For now we always map the memory and keep a mapping from handles
/// to VA memory addresses. Once we can support the separate VMEM call to
/// map handles we can fix this.
if (m_region.kernarg()) {
if (use_bo_shmem) {
mapped_mem = mmap(nullptr, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd_,
get_bo_info_args.map_offset);
if (mapped_mem == MAP_FAILED) {
+12 -8
ファイルの表示
@@ -2,24 +2,24 @@
//
// The University of Illinois/NCSA
// Open Source License (NCSA)
//
//
// Copyright (c) 2014-2020, Advanced Micro Devices, Inc. All rights reserved.
//
//
// Developed by:
//
//
// AMD Research and AMD HSA Software Development
//
//
// Advanced Micro Devices, Inc.
//
//
// www.amd.com
//
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal with the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
//
// - Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimers.
// - Redistributions in binary form must reproduce the above copyright
@@ -29,7 +29,7 @@
// nor the names of its contributors may be used to endorse or promote
// products derived from this Software without specific prior written
// permission.
//
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
@@ -147,6 +147,10 @@ class MemoryRegion : public core::MemoryRegion {
(mem_props_.HeapType == HSA_HEAPTYPE_DEVICE_SVM));
}
__forceinline bool IsSystemButNotSVM() const {
return (mem_props_.HeapType == HSA_HEAPTYPE_SYSTEM);
}
__forceinline bool IsLDS() const {
return mem_props_.HeapType == HSA_HEAPTYPE_GPU_LDS;
}