da4ml 0.3.0__tar.gz → 0.3.0.post1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. {da4ml-0.3.0/src/da4ml.egg-info → da4ml-0.3.0.post1}/PKG-INFO +1 -1
  2. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/_version.py +2 -2
  3. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/trace/ops/conv_utils.py +1 -1
  4. {da4ml-0.3.0 → da4ml-0.3.0.post1/src/da4ml.egg-info}/PKG-INFO +1 -1
  5. {da4ml-0.3.0 → da4ml-0.3.0.post1}/.clang-format +0 -0
  6. {da4ml-0.3.0 → da4ml-0.3.0.post1}/.github/workflows/python-publish.yml +0 -0
  7. {da4ml-0.3.0 → da4ml-0.3.0.post1}/.gitignore +0 -0
  8. {da4ml-0.3.0 → da4ml-0.3.0.post1}/.pre-commit-config.yaml +0 -0
  9. {da4ml-0.3.0 → da4ml-0.3.0.post1}/DAIS-spec.md +0 -0
  10. {da4ml-0.3.0 → da4ml-0.3.0.post1}/LICENSE +0 -0
  11. {da4ml-0.3.0 → da4ml-0.3.0.post1}/README.md +0 -0
  12. {da4ml-0.3.0 → da4ml-0.3.0.post1}/interperter/DAISInterpreter.cc +0 -0
  13. {da4ml-0.3.0 → da4ml-0.3.0.post1}/interperter/DAISInterpreter.hh +0 -0
  14. {da4ml-0.3.0 → da4ml-0.3.0.post1}/pyproject.toml +0 -0
  15. {da4ml-0.3.0 → da4ml-0.3.0.post1}/setup.cfg +0 -0
  16. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/__init__.py +0 -0
  17. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/cmvm/__init__.py +0 -0
  18. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/cmvm/api.py +0 -0
  19. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/cmvm/core/__init__.py +0 -0
  20. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/cmvm/core/indexers.py +0 -0
  21. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/cmvm/core/state_opr.py +0 -0
  22. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/cmvm/types.py +0 -0
  23. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/cmvm/util/__init__.py +0 -0
  24. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/cmvm/util/bit_decompose.py +0 -0
  25. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/cmvm/util/mat_decompose.py +0 -0
  26. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/__init__.py +0 -0
  27. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/__init__.py +0 -0
  28. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/cpp_codegen.py +0 -0
  29. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/hls_model.py +0 -0
  30. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/ap_binary.h +0 -0
  31. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/ap_common.h +0 -0
  32. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/ap_decl.h +0 -0
  33. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/ap_fixed.h +0 -0
  34. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/ap_fixed_base.h +0 -0
  35. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/ap_fixed_ref.h +0 -0
  36. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/ap_fixed_special.h +0 -0
  37. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/ap_int.h +0 -0
  38. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/ap_int_base.h +0 -0
  39. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/ap_int_ref.h +0 -0
  40. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/ap_int_special.h +0 -0
  41. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/ap_shift_reg.h +0 -0
  42. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/etc/ap_private.h +0 -0
  43. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/hls_math.h +0 -0
  44. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/hls_stream.h +0 -0
  45. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/ap_types/utils/x_hls_utils.h +0 -0
  46. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/binder_util.hh +0 -0
  47. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/build_binder.mk +0 -0
  48. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/cpp/source/vitis_bitshift.hh +0 -0
  49. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/verilog/__init__.py +0 -0
  50. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/verilog/comb.py +0 -0
  51. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/verilog/io_wrapper.py +0 -0
  52. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/verilog/pipeline.py +0 -0
  53. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/verilog/source/binder_util.hh +0 -0
  54. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/verilog/source/build_binder.mk +0 -0
  55. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/verilog/source/build_prj.tcl +0 -0
  56. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/verilog/source/ioutil.hh +0 -0
  57. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/verilog/source/mux.v +0 -0
  58. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/verilog/source/negative.v +0 -0
  59. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/verilog/source/shift_adder.v +0 -0
  60. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/verilog/source/template.xdc +0 -0
  61. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/codegen/verilog/verilog_model.py +0 -0
  62. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/converter/__init__.py +0 -0
  63. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/converter/hgq2/parser.py +0 -0
  64. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/converter/hgq2/replica.py +0 -0
  65. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/trace/__init__.py +0 -0
  66. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/trace/fixed_variable.py +0 -0
  67. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/trace/fixed_variable_array.py +0 -0
  68. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/trace/ops/__init__.py +0 -0
  69. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/trace/ops/einsum_utils.py +0 -0
  70. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/trace/ops/reduce_utils.py +0 -0
  71. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/trace/pipeline.py +0 -0
  72. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml/trace/tracer.py +0 -0
  73. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml.egg-info/SOURCES.txt +0 -0
  74. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml.egg-info/dependency_links.txt +0 -0
  75. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml.egg-info/requires.txt +0 -0
  76. {da4ml-0.3.0 → da4ml-0.3.0.post1}/src/da4ml.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: da4ml
3
- Version: 0.3.0
3
+ Version: 0.3.0.post1
4
4
  Summary: Digital Arithmetic for Machine Learning
5
5
  Author-email: Chang Sun <chsun@cern.ch>
6
6
  License: GNU Lesser General Public License v3 (LGPLv3)
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '0.3.0'
21
- __version_tuple__ = version_tuple = (0, 3, 0)
20
+ __version__ = version = '0.3.0.post1'
21
+ __version_tuple__ = version_tuple = (0, 3, 0, 'post1')
@@ -40,7 +40,7 @@ def stride_arr(stride: int | tuple[int, ...], arr: np.ndarray):
40
40
  stride = (stride,) * (ndim - 1)
41
41
 
42
42
  _idx = tuple(slice(None, None, st) for st in stride)
43
- return arr[*_idx]
43
+ return arr[_idx]
44
44
 
45
45
 
46
46
  TA = TypeVar('TA', 'FixedVariableArray', NDArray[np.integer | np.floating])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: da4ml
3
- Version: 0.3.0
3
+ Version: 0.3.0.post1
4
4
  Summary: Digital Arithmetic for Machine Learning
5
5
  Author-email: Chang Sun <chsun@cern.ch>
6
6
  License: GNU Lesser General Public License v3 (LGPLv3)
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes