mirror of
https://github.com/zama-ai/concrete.git
synced 2026-04-17 03:00:54 -04:00
fix(compiler/bench): Fixing round end to end yaml description generation with shapes arguments
This commit is contained in:
@@ -117,7 +117,7 @@ def generate(args):
|
||||
print("# /!\ THIS FILE HAS BEEN GENERATED")
|
||||
np.random.seed(0)
|
||||
# unsigned_unsigned
|
||||
shapes = ([shape] for shape in args.shapes) if args.shapes else (None, [3], [2, 3] , [1, 2, 3])
|
||||
shapes = tuple([shape] for shape in args.shapes) if args.shapes else (None, [3], [2, 3] , [1, 2, 3])
|
||||
domain = [
|
||||
(from_p, to_p, signed, with_tlu, with_shape)
|
||||
for from_p in args.acc_bitwidth
|
||||
|
||||
Reference in New Issue
Block a user