firmware: add LinAlgError exception
This commit is contained in:
parent
04078b3d89
commit
85e8a3fc44
|
@ -476,7 +476,7 @@ extern "C" fn stop_fn(
|
||||||
}
|
}
|
||||||
|
|
||||||
// Must be kept in sync with preallocate_runtime_exception_names() in `artiq.compiler.embedding`
|
// Must be kept in sync with preallocate_runtime_exception_names() in `artiq.compiler.embedding`
|
||||||
static EXCEPTION_ID_LOOKUP: [(&str, u32); 20] = [
|
static EXCEPTION_ID_LOOKUP: [(&str, u32); 21] = [
|
||||||
("RTIOUnderflow", 0),
|
("RTIOUnderflow", 0),
|
||||||
("RTIOOverflow", 1),
|
("RTIOOverflow", 1),
|
||||||
("RTIODestinationUnreachable", 2),
|
("RTIODestinationUnreachable", 2),
|
||||||
|
@ -497,6 +497,7 @@ static EXCEPTION_ID_LOOKUP: [(&str, u32); 20] = [
|
||||||
("TypeError", 17),
|
("TypeError", 17),
|
||||||
("ValueError", 18),
|
("ValueError", 18),
|
||||||
("ZeroDivisionError", 19),
|
("ZeroDivisionError", 19),
|
||||||
|
("LinAlgError", 20),
|
||||||
];
|
];
|
||||||
|
|
||||||
pub fn get_exception_id(name: &str) -> u32 {
|
pub fn get_exception_id(name: &str) -> u32 {
|
||||||
|
|
Loading…
Reference in New Issue