From 577a0de92dd2c85f0d0e521303c10d61af4f6bfd Mon Sep 17 00:00:00 2001 From: lkcl Date: Sat, 2 Oct 2021 21:37:34 +0100 Subject: [PATCH] --- 3d_gpu/architecture/dynamic_simd.mdwn | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/3d_gpu/architecture/dynamic_simd.mdwn b/3d_gpu/architecture/dynamic_simd.mdwn index f582a87bd..33bbb627e 100644 --- a/3d_gpu/architecture/dynamic_simd.mdwn +++ b/3d_gpu/architecture/dynamic_simd.mdwn @@ -75,10 +75,10 @@ construct: # every way. no changes to the nmigen language or its use # are permitted - with m.If(x < y): - comb += out.eq(x) - with m.Else(): - comb += out.eq(y) + with m.If(x < y): # exactly + comb += out.eq(x) # the + with m.Else(): # same + comb += out.eq(y) # code The purpose of PartitionedSignal is therefore to provide full 100% transparent SIMD run-time dynamic behaviour as far as end-usage is -- 2.30.2