зеркало из https://github.com/microsoft/ml4f.git
Fix two errors in asm emit
This commit is contained in:
Родитель
eeba84ed28
Коммит
81cddcbb9b
|
@ -619,7 +619,6 @@ export class File {
|
|||
this.directiveError("invalid .float16")
|
||||
const n = float16toUInt16(v)
|
||||
this.emitShort(n & 0xffff)
|
||||
this.emitShort((n >> 16) & 0xffff)
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
@ -131,7 +131,7 @@ function addFloat16(mi: ModelInfo, v: number) {
|
|||
export function alignWeights(mi: ModelInfo) {
|
||||
while (mi.weightPtr & 3)
|
||||
addParamBytes(mi, [0])
|
||||
mi.weightAsm += ".align 4\n"
|
||||
mi.weightAsm += ".balign 4\n"
|
||||
}
|
||||
|
||||
export function addWeight(mi: ModelInfo, v: number) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче