chore
This commit is contained in:
parent
61cea2a784
commit
ce986cfc6d
@ -240,10 +240,10 @@ export const Configs: FC = observer(() => {
|
|||||||
<ToolTipButton text={t('Convert')}
|
<ToolTipButton text={t('Convert')}
|
||||||
desc={t('Convert model with these configs. Using a converted model will greatly improve the loading speed, but model parameters of the converted model cannot be modified.')}
|
desc={t('Convert model with these configs. Using a converted model will greatly improve the loading speed, but model parameters of the converted model cannot be modified.')}
|
||||||
onClick={async () => {
|
onClick={async () => {
|
||||||
if (commonStore.platform == 'darwin') {
|
if (commonStore.platform === 'darwin') {
|
||||||
toast(t('MacOS is not yet supported for performing this operation, please do it manually.'), { type: 'info' });
|
toast(t('MacOS is not yet supported for performing this operation, please do it manually.'), { type: 'info' });
|
||||||
return;
|
return;
|
||||||
} else if (commonStore.platform == 'linux') {
|
} else if (commonStore.platform === 'linux') {
|
||||||
toast(t('Linux is not yet supported for performing this operation, please do it manually.'), { type: 'info' });
|
toast(t('Linux is not yet supported for performing this operation, please do it manually.'), { type: 'info' });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -338,7 +338,7 @@ export const Configs: FC = observer(() => {
|
|||||||
src={commonStore.settings.language === 'zh' ? strategyZhImg : strategyImg} />
|
src={commonStore.settings.language === 'zh' ? strategyZhImg : strategyImg} />
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
selectedConfig.modelParameters.device == 'Custom' &&
|
selectedConfig.modelParameters.device === 'Custom' &&
|
||||||
<Labeled label="Strategy"
|
<Labeled label="Strategy"
|
||||||
onMouseEnter={() => setDisplayStrategyImg(true)}
|
onMouseEnter={() => setDisplayStrategyImg(true)}
|
||||||
onMouseLeave={() => setDisplayStrategyImg(false)}
|
onMouseLeave={() => setDisplayStrategyImg(false)}
|
||||||
@ -353,7 +353,7 @@ export const Configs: FC = observer(() => {
|
|||||||
}} />
|
}} />
|
||||||
} />
|
} />
|
||||||
}
|
}
|
||||||
{selectedConfig.modelParameters.device == 'Custom' && <div />}
|
{selectedConfig.modelParameters.device === 'Custom' && <div />}
|
||||||
{
|
{
|
||||||
selectedConfig.modelParameters.device != 'CPU' && selectedConfig.modelParameters.device != 'MPS' &&
|
selectedConfig.modelParameters.device != 'CPU' && selectedConfig.modelParameters.device != 'MPS' &&
|
||||||
<Labeled label={t('Use Custom CUDA kernel to Accelerate')}
|
<Labeled label={t('Use Custom CUDA kernel to Accelerate')}
|
||||||
|
@ -240,7 +240,7 @@ export function downloadProgramFiles() {
|
|||||||
manifest.programFiles.forEach(({ url, path }) => {
|
manifest.programFiles.forEach(({ url, path }) => {
|
||||||
if (path)
|
if (path)
|
||||||
ReadFileInfo(path).then(info => {
|
ReadFileInfo(path).then(info => {
|
||||||
if (info.size == 0 && url)
|
if (info.size === 0 && url)
|
||||||
AddToDownloadList(path, url.replace('@master', '@v' + manifest.version));
|
AddToDownloadList(path, url.replace('@master', '@v' + manifest.version));
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
if (url)
|
if (url)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user