Fixed the initialisation of C++ channel arrays to initialise the correct array
This commit is contained in:
parent
a1f209fb0d
commit
ec43e592f0
|
@ -752,7 +752,7 @@ cppdeclareInit ops m t@(A.Array ds t') var
|
||||||
call genVariableUnchecked ops var
|
call genVariableUnchecked ops var
|
||||||
tell ["_storage,"]
|
tell ["_storage,"]
|
||||||
call genVariableUnchecked ops var
|
call genVariableUnchecked ops var
|
||||||
tell [","]
|
tell ["_actual,"]
|
||||||
sequence_ $ intersperse (tell ["*"]) [case dim of A.Dimension d -> tell [show d] | dim <- ds]
|
sequence_ $ intersperse (tell ["*"]) [case dim of A.Dimension d -> tell [show d] | dim <- ds]
|
||||||
tell [");"]
|
tell [");"]
|
||||||
_ -> return ()
|
_ -> return ()
|
||||||
|
|
|
@ -426,9 +426,9 @@ testDeclareInitFree = TestList
|
||||||
,testAllSame 3 ("","") $ A.Array [A.Dimension 4] A.Int
|
,testAllSame 3 ("","") $ A.Array [A.Dimension 4] A.Int
|
||||||
|
|
||||||
-- Channel arrays:
|
-- Channel arrays:
|
||||||
,testAll 4 ("tock_init_chan_array(foo_storage,foo,4);^ChanInit(foo[0]);^","") ("tockInitChanArray(foo_storage,foo,4);","") $ A.Array [A.Dimension 4] $ A.Chan A.DirUnknown (A.ChanAttributes False False) A.Int
|
,testAll 4 ("tock_init_chan_array(foo_storage,foo,4);^ChanInit(foo[0]);^","") ("tockInitChanArray(foo_storage,foo_actual,4);","") $ A.Array [A.Dimension 4] $ A.Chan A.DirUnknown (A.ChanAttributes False False) A.Int
|
||||||
-- The subscripting on this test is incomplete; it should probably be fixed at some point:
|
-- The subscripting on this test is incomplete; it should probably be fixed at some point:
|
||||||
,testAll 5 ("tock_init_chan_array(foo_storage,foo,4*5*6);^ChanInit(foo[0*foo_sizes[1]*foo_sizes[2]]);^","") ("tockInitChanArray(foo_storage,foo,4*5*6);","") $
|
,testAll 5 ("tock_init_chan_array(foo_storage,foo,4*5*6);^ChanInit(foo[0*foo_sizes[1]*foo_sizes[2]]);^","") ("tockInitChanArray(foo_storage,foo_actual,4*5*6);","") $
|
||||||
A.Array [A.Dimension 4,A.Dimension 5,A.Dimension 6] $ A.Chan A.DirUnknown (A.ChanAttributes False False) A.Int
|
A.Array [A.Dimension 4,A.Dimension 5,A.Dimension 6] $ A.Chan A.DirUnknown (A.ChanAttributes False False) A.Int
|
||||||
,testAllSame 6 ("","") $ A.Array [A.Dimension 4] $ A.Chan A.DirInput (A.ChanAttributes False False) A.Int
|
,testAllSame 6 ("","") $ A.Array [A.Dimension 4] $ A.Chan A.DirInput (A.ChanAttributes False False) A.Int
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user