We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2b5424 commit 05843dbCopy full SHA for 05843db
1 file changed
extensions/native/circuit/src/sumcheck/cuda.rs
@@ -55,7 +55,7 @@ impl NativeSumcheckChipGpu {
55
for (j, &val) in prod_specific.p.iter().enumerate() {
56
self.hint_space_provider.request(
57
cols.prod_hint_id,
58
- prod_specific.data_ptr + F::from_canonical_u16(j),
+ prod_specific.data_ptr + F::from_canonical_usize(j),
59
val,
60
);
61
}
@@ -65,7 +65,7 @@ impl NativeSumcheckChipGpu {
65
for (j, &val) in logup_specific.pq.iter().enumerate() {
66
67
cols.logup_hint_id,
68
- logup_specific.data_ptr + F::from_canonical_u16(j),
+ logup_specific.data_ptr + F::from_canonical_usize(j),
69
70
71
0 commit comments