util
get_implemented(f)
Prints the implemented methods of an operator
Parameters:
Name | Type | Description | Default |
---|---|---|---|
f |
Callable
|
The operator to get the implemented methods of. |
required |
Returns:
Type | Description |
---|---|
None |
Source code in jaxdf/util.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|
update_dictionary(old, new_entries)
Update a dictionary with new entries.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
old |
dict
|
The dictionary to update |
required |
new_entries |
dict
|
The new entries to add to the dictionary |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
The updated dictionary |
Source code in jaxdf/util.py
8 9 10 11 12 13 14 15 16 17 18 19 20 |
|