@@ -59,17 +59,17 @@ static void precomputeRoots(APInt root, const APInt &mod, unsigned degree,
5959 pool.wait ();
6060}
6161
62- zkir:: field::PrimeFieldAttr PrimitiveRootAttr::getRoot () const {
62+ field::PrimeFieldAttr PrimitiveRootAttr::getRoot () const {
6363 return getImpl ()->root ;
6464}
6565
66- zkir:: field::PrimeFieldAttr PrimitiveRootAttr::getInvRoot () const {
66+ field::PrimeFieldAttr PrimitiveRootAttr::getInvRoot () const {
6767 return getImpl ()->invRoot ;
6868}
6969
7070IntegerAttr PrimitiveRootAttr::getDegree () const { return getImpl ()->degree ; }
7171
72- zkir:: field::PrimeFieldAttr PrimitiveRootAttr::getInvDegree () const {
72+ field::PrimeFieldAttr PrimitiveRootAttr::getInvDegree () const {
7373 return getImpl ()->invDegree ;
7474}
7575
@@ -81,7 +81,7 @@ DenseElementsAttr PrimitiveRootAttr::getInvRoots() const {
8181 return getImpl ()->invRoots ;
8282}
8383
84- zkir:: mod_arith::MontgomeryAttr PrimitiveRootAttr::getMontgomery () const {
84+ mod_arith::MontgomeryAttr PrimitiveRootAttr::getMontgomery () const {
8585 return getImpl ()->montgomery ;
8686}
8787
@@ -90,12 +90,12 @@ namespace detail {
9090PrimitiveRootAttrStorage *PrimitiveRootAttrStorage::construct (
9191 AttributeStorageAllocator &allocator, KeyTy &&key) {
9292 // Extract the root and degree from the key.
93- zkir:: field::PrimeFieldAttr root = std::get<0 >(key);
93+ field::PrimeFieldAttr root = std::get<0 >(key);
9494 IntegerAttr degree = std::get<1 >(key);
95- zkir:: mod_arith::MontgomeryAttr montgomery = std::get<2 >(key);
95+ mod_arith::MontgomeryAttr montgomery = std::get<2 >(key);
9696
9797 std::optional<IntegerAttr> montgomeryR;
98- if (montgomery != zkir:: mod_arith::MontgomeryAttr ()) {
98+ if (montgomery != mod_arith::MontgomeryAttr ()) {
9999 montgomeryR = montgomery.getR ();
100100 }
101101
@@ -111,8 +111,8 @@ PrimitiveRootAttrStorage *PrimitiveRootAttrStorage::construct(
111111
112112 field::PrimeFieldAttr invDegree =
113113 field::PrimeFieldAttr::get (root.getType (), invDegreeVal);
114- zkir:: field::PrimeFieldAttr invRoot =
115- zkir:: field::PrimeFieldAttr::get (root.getType (), invRootVal);
114+ field::PrimeFieldAttr invRoot =
115+ field::PrimeFieldAttr::get (root.getType (), invRootVal);
116116
117117 // Compute the exponent table.
118118 SmallVector<APInt> roots, invRoots;
0 commit comments