mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-02-14 09:39:51 +00:00
fix(ollama): classify 'rocm' as its own cpu + update classifier
This commit is contained in:
Submodule _webi/build-classifier updated: 28536b0aa2...20e001829a
@@ -22,6 +22,12 @@ module.exports = async function (request) {
|
||||
|
||||
rel.arch = 'aarch64';
|
||||
}
|
||||
|
||||
let isROCm = rel.name.includes('-rocm');
|
||||
if (isROCm) {
|
||||
Object.assign(rel, { arch: 'x86_64_rocm' });
|
||||
}
|
||||
|
||||
releases.push(rel);
|
||||
}
|
||||
all.releases = releases;
|
||||
|
||||
Reference in New Issue
Block a user