Skip to content

Commit

Permalink
dev merge to main
Browse files Browse the repository at this point in the history
  • Loading branch information
FuXiii committed Mar 3, 2024
2 parents 75aa6c5 + d07c460 commit 6fb6b9e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion source/LogicDevice.rst
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ VkDeviceQueueCreateInfo
其中 ``pQueuePriorities`` 配置的优先级的有效等级范围为 ``[0, 1]`` ,优先级越大,优先级越高。其中 ``0.0`` 是最低的优先级, ``1.0`` 是最高的优先级。在某些设备中,优先级越高意味着将会得到更多的执行机会,具体的队列调由设备自身管理, ``Vulkan`` 并不规定调度规则。
在同一逻辑设备上优先级高的设备队列可能会导致低优先级的设备队列长时间处于 ``饥饿`` 状态,直到高级别的设备队列执行完所有指令。但不同的逻辑设备中的某一设备队列饥饿不会影响另一个逻辑设备上的设备队列。

.. note:: VkDeviceQueueCreateInfo::flags
.. admonition:: VkDeviceQueueCreateInfo::flags
:class: note

``VkDeviceQueueCreateFlagBits`` 在 ``Vulkan 1.0`` 版本中没用定义任何成员。

Expand Down
3 changes: 2 additions & 1 deletion source/Memory.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* 2024/3/3 增加 ``VkPhysicalDeviceMemoryProperties`` 章节。
* 2024/3/3 增加 ``VkMemoryHeap`` 章节。
* 2024/3/3 增加 ``VkMemoryType`` 章节。
* 2024/3/3 更新 ``设备内存`` 章节。

``Vulkan`` 中有两种分配内存的途径:

Expand Down Expand Up @@ -446,7 +447,7 @@ VkInternalAllocationType
这些设备内存根据不同特性又分为两种类型:

1. :bdg-secondary:`Host 端内存,但可被 Device 端访问` 这类内存的前提是在主板的内存条上,并且这部分内存可被 ``GPU`` 访问。
2. :bdg-secondary:`Device 端独占内存` ``GPU`` 设备自身携带的专有内存。
2. :bdg-secondary:`Device 端独占内存` ``GPU`` 设备自身携带的专有内存。数据在该内存中将会有更高的性能。

其示意图如下:

Expand Down

0 comments on commit 6fb6b9e

Please sign in to comment.