mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 20:25:34 -05:00
14 lines
368 B
Python
14 lines
368 B
Python
"""Module for compilation configuration."""
|
|
|
|
|
|
class CompilationConfiguration:
|
|
"""Class that allows the compilation process to be customized."""
|
|
|
|
enable_topological_optimizations: bool
|
|
|
|
def __init__(
|
|
self,
|
|
enable_topological_optimizations: bool = True,
|
|
):
|
|
self.enable_topological_optimizations = enable_topological_optimizations
|