@@ -90,7 +90,8 @@ def build_index_page(groups):
9090 "for_each" ,
9191 ],
9292 "Generation" : [
93- "range" ,
93+ ("range" , "range()" ),
94+ ("range" , "range(F fun)" ),
9495 "range_like" ,
9596 "each_index" ,
9697 "fill" ,
@@ -193,6 +194,14 @@ def build_index_page(groups):
193194 "isinf" ,
194195 "isnan" ,
195196 ],
197+ "Fast math" : [
198+ "fast_exp" ,
199+ "fast_log" ,
200+ "fast_cos" ,
201+ "fast_sin" ,
202+ "fast_tan" ,
203+ "fast_div" ,
204+ ],
196205 "Conditional" : [
197206 ("where" , "where(const C&, const L&, const R&)" ),
198207 ("where" , "where(const C&, const L&)" ),
@@ -202,12 +211,12 @@ def build_index_page(groups):
202211 "cast_to" ,
203212 ("load" , "load(const T*, const I&)" ),
204213 ("load" , "load(const T*, const I&, const M&)" ),
205- ("loadn" , "loadn(const T*, ptrdiff_t )" ),
206- ("loadn" , "loadn(const T*, ptrdiff_t, ptrdiff_t )" ),
214+ ("loadn" , "loadn(const T*, size_t )" ),
215+ ("loadn" , "loadn(const T*, size_t, size_t )" ),
207216 ("store" , "store(const V&, T *ptr, const I&)" ),
208217 ("store" , "store(const V&, T *ptr, const I&, const M&)" ),
209- ("storen" , "storen(const V&, T*, ptrdiff_t )" ),
210- ("storen" , "storen(const V&, T*, ptrdiff_t, ptrdiff_t )" ),
218+ ("storen" , "storen(const V&, T*, size_t )" ),
219+ ("storen" , "storen(const V&, T*, size_t, size_t )" ),
211220 ("aligned_ptr" , "aligned_ptr" , "struct" ),
212221 ]
213222}
0 commit comments