commit
90108745e2
@ -1 +1 @@
|
||||
0.3.12
|
||||
0.3.13
|
||||
|
||||
@ -23,10 +23,7 @@ const DEFALT_SETTINGS = {
|
||||
gpus_in_use: [],
|
||||
is_initial: true,
|
||||
// TODO: This needs to be set based on user toggle in settings
|
||||
vulkan: {
|
||||
enabled: true,
|
||||
gpu_in_use: '1',
|
||||
},
|
||||
vulkan: false
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -67,7 +67,7 @@ export const executableNitroFile = (): NitroExecutableOptions => {
|
||||
|
||||
if (gpuInfo['vulkan'] === true) {
|
||||
binaryFolder = path.join(__dirname, '..', 'bin')
|
||||
binaryFolder = path.join(binaryFolder, 'win-vulkan')
|
||||
binaryFolder = path.join(binaryFolder, 'linux-vulkan')
|
||||
vkVisibleDevices = gpuInfo['gpus_in_use'].toString()
|
||||
}
|
||||
}
|
||||
|
||||
@ -207,7 +207,7 @@ const SimpleTextMessage: React.FC<ThreadMessage> = (props) => {
|
||||
{messages[messages.length - 1]?.id === props.id &&
|
||||
(props.status === MessageStatus.Pending || tokenSpeed > 0) && (
|
||||
<p className="absolute right-8 text-xs font-medium text-foreground">
|
||||
Token Speed: {Number(tokenSpeed).toFixed(2)}/s
|
||||
Token Speed: {Number(tokenSpeed).toFixed(2)}t/s
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user