Ondřej Sýkora
Ondřej Sýkora
As discussed in the review of #132, we're patching `tf_keras.layers.LayerNormalization` with itself in some of our tests, e.g. in gematria/granite/python/gnn_model_base_test.py. We should investigate whether this mocking is still needed, and...
As of now, the GRANITE model is basic-block oriented (resp. trace-oriented), i.e. it doesn't use any information about code that was executed before or after the basic block. We believe...
Title says it all. Reduce dependency on Abseil libraries from the C++ code. Use LLVM command-line parsing facilities instead.
Title says it all. Remove references to absl::StatusOr from the C++ code.
Title says it all. Reduce dependencies on Abseil libraries from the C++ code.
The [`get_bbs` function](https://github.com/google/gematria/blob/0e1c55564f14ae03fe794d6c62703e4617359620/gematria/datasets/pipelines/compile_modules_lib.py#L109) composes Beam pipelines. We should adopt the idiomatic Beam approach, which is to make this a [composite transform](https://beam.apache.org/documentation/programming-guide/#composite-transforms).