Commits on Source
460
696e6531
Avoids closure in LazilyCompilingFunctionCaller.__call__
Jun 29, 2021
8a96085c
explains argument preprocesssing
Jun 29, 2021
4080e448
CompiledFunction: better docs
Jun 29, 2021
5ddb2e69
adds motivation for pytato-based array contexts in docs
Jun 29, 2021
616aa12b
gets rid of unnecessary pytest_generate_tests
Jun 29, 2021
e6602bad
clarify that pytest_generate_tests_for_array_contexts: returns PyOpenCLArrayContext
Jun 29, 2021
2eb6c64a
don't stringify PyOpenCLArrayContext, rather let the sub-classes implement it
Jun 29, 2021
d23600f0
avoid stateful update of tranforming a loopy t-unit inside a pt-program
Jun 29, 2021
4446c2c3
add pytato to setup.py
Jun 30, 2021
6e768a98
Make _get_scalar_func_loopy_program a function (not an actx method)
Jun 30, 2021
deb2a813
fake_numpy: use loopy to allocate elementwise function outputs
Jun 30, 2021
0a124475
Add test_abs_complex
Jun 30, 2021
fee0a55d
test_arraycontext: add an _acf
Jun 30, 2021
a9c58349
Merge branch 'main' into pytato
Jun 30, 2021
d341787c
do not impose a hard dep. on pytato
Jun 30, 2021
82b03d20
Merge pull request #14 from inducer/pytato
Jun 30, 2021
77b03e5e
add lazy meshmode test
Jul 01, 2021
be0f569e
Broadcast array arg in binary ops if it's a valid leaf array type (#51)
Jul 06, 2021
8e5dbc5f
call_loopy: correct entrypoint (#58)
Jul 06, 2021
37a61820
Improve error message for arithmetic on frozen array container
Jul 07, 2021
2b0ae43b
add vdot to pyopencl array context
Jul 14, 2021
464a0383
extend some tests to use complex inputs
Jul 14, 2021
12616418
Add generic container reductions (#62)
Jul 16, 2021
ced533ec
bugfix: change order of pt.make_placeholder
Jul 16, 2021
f74fb9e9
Merge pull request #63 from inducer/bugfix-1
Jul 16, 2021
5187a0a5
Cache codegen result in freeze() (#56)
Jul 17, 2021
5d5c660d
improves scalar's dtype guess
Jul 20, 2021
aa23450d
test actx.compile with python scalars
Jul 20, 2021
db1a7d55
add any and all to PyOpenCLArrayContext
Jul 21, 2021
112ada65
add tests for any and all
Jul 21, 2021
3df0533e
[PytatoPyOpenCLArrayContext] Do not evaluate array expressions for 0-sized arrays (#69)
Aug 11, 2021
4341b9d6
PytatoPyOpenCLArrayContext.compile: add support for keyword arguments
Aug 11, 2021
78dc9221
Pass no_numpy option for pytato loopy generation
Aug 12, 2021
f50736c1
defines PytatoPyOpenCLArrayContext.transform_dag
Aug 16, 2021
35dc2614
_normalize_pt_expr: perform the transformation for a dict-of-named-arrays
Aug 16, 2021
82117c73
use the standard doc config (#77)
Aug 24, 2021
e309ea20
split ArrayContainerT into ContainerT and ArrayOrContainerT
Aug 26, 2021
bdfbda7e
fix mypy failure
Aug 26, 2021
84a84ced
add ArrayT to fix mypy without limiting ContainerT usefulness
Aug 26, 2021
e08969f6
fix type signature of wrapper func
Aug 26, 2021
e15ac8ac
Add a feature flag for nonscalar broadcasting
Aug 29, 2021
df421e38
Allow registering MultiVector as an array container
Aug 29, 2021
c1006e9c
Clarify reduction documentation (#82)
Aug 30, 2021
5776eab5
add non-recursive reductions
Sep 04, 2021
4b184f88
require reduce_func to be associative in non-recursive reductions too
Sep 04, 2021
8f56582a
Create einsum loopy kernel with offsets allowed
Sep 04, 2021
387f7ad4
support reductions with targeted axes
Sep 20, 2021
0f913321
defines PytatoFakeNumpyNamespace.broadcast_to
Sep 20, 2021
e98e577b
add array_equal to PyOpenCLArrayContext.np
Sep 22, 2021
0d355ed2
test and fix map_array_container on scalars
Sep 22, 2021
ac8d9d26
raise TypeError instead of NotImplementedError in de/serialize_container
Sep 22, 2021
e0e1a420
Define ArrayContext.permits_advanced_indexing
Sep 22, 2021
93140738
add any/all/array_equal to PytatoPyOpenCLArrayContext.np
Sep 24, 2021
a9f8414b
Use ProcessLogger in LazilyCompilingFunctionCaller to make codegen bottlenecks more visible
Oct 05, 2021
5eec699e
Fix typo in transform_loopy_program log message
Oct 11, 2021
917c656d
add flatten to numpy for an entire container
Oct 15, 2021
768a0070
add flatten and unflatten
Oct 15, 2021
3e81dd22
mention that serialize_container should be deterministic
Oct 15, 2021
18e08aba
rename argument in unflatten_to_numpy
Oct 15, 2021
da868559
remove flatten_to_numpy and unflatten_from_numpy
Oct 15, 2021
54789970
raise if flattened container does not have homogeneous dtypes
Oct 15, 2021
1d914ab3
update tests with more array container layouts
Oct 15, 2021
d859cd8a
complain if unflattened strides do not match
Oct 15, 2021
91e89501
improve docs for serialize_container
Oct 15, 2021
8fb7d285
remove unused memoize_in
Oct 15, 2021
82a84595
make failed reshape message less opaque
Oct 15, 2021
c56e8f58
hardcode flatten and unflatten in c order
Oct 15, 2021
087351c6
add tests for flatten edge cases
Oct 15, 2021
85c8b39c
slice forwards when unflattening
Oct 15, 2021
4d0fe4dd
add missing space in exception message
Oct 15, 2021
5dc9da2c
add some more tests for unflatten
Oct 15, 2021
7b03174b
update test skip condition
Oct 15, 2021
853f5014
improve docs
Oct 15, 2021
c8269936
unflatten: better check that template and ary sizes match
Oct 15, 2021
c50ee3e7
update xfail link
Oct 17, 2021
004e85fe
pyopencl: remove unused astype
Oct 18, 2021
133e8fa0
Teach PyOpenCLArrayContext how to deal with loopy programs without loops
Oct 18, 2021
a90e8ba1
do not force host transfers when computing norms
Oct 18, 2021
f16ccab4
Merge branch 'main' into flatten-to-numpy
Oct 18, 2021
c106155c
Deprecate is_array_container
Oct 18, 2021
8f862789
_serialize_ndarray_container: raise TypeError for non-object-arrays
Oct 18, 2021
9c24abb1
remove unused _scalar_list_norm
Oct 18, 2021
6bc8d56f
Merge branch 'main' into flatten-to-numpy
Oct 19, 2021
c5ed317a
Merge pull request #91 from alexfikl/flatten-to-numpy
Oct 19, 2021
6eaf5186
Add alternate outer product (#46)
Oct 20, 2021
13eed852
introduces FromArrayContextCompile tag
Oct 20, 2021
7bd2aa83
adds PytatoPyOpenCLArrayContext.compile to docs
Oct 20, 2021
f4183f8e
allow scalars in to_numpy
Oct 20, 2021
d03855d1
convert some is_array_container_type checks
Oct 22, 2021
13e9a776
remove is_array_container_type in multimap
Oct 22, 2021
7b57511a
simplify new_like allocation
Oct 22, 2021
f0e3ac00
add specific array container exception type
Oct 22, 2021
bec3052a
allow unflatten to skip dtype and stride checks
Oct 24, 2021
a2620be2
use make_placeholder instead of Placeholder
Oct 27, 2021
1db13f2e
add DeviceArray type alias for typing
Oct 27, 2021
b3d22b17
Use edit_requirements_txt_for_downstream_in_subdir for downstream CI
Oct 29, 2021
0bb24444
Drop a now-extraneous type: ignore
Oct 29, 2021
5c856806
Fix a ci-support script name in Github CI script
Oct 29, 2021
8559234e
better error message in dataclass_array_container
Oct 29, 2021
1f8709ce
add type annotations to is_array_field
Oct 29, 2021
360 additional commits have been omitted to prevent performance issues.
Loading
Loading