8000 Combinational cycle wrongly detected on array assignement · Issue #277 · sylefeb/Silice · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Combinational cycle wrongly detected on array assignement #277

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally s 822F end you account related emails.

Already on GitHub? Sign in to your account

Open
Daemiryon opened this issue Apr 22, 2025 · 0 comments
Open

Combinational cycle wrongly detected on array assignement #277

Daemiryon opened this issue Apr 22, 2025 · 0 comments

Comments

@Daemiryon
Copy link

This following design lead to a combinational cycle :

// In place array sum rediction
unit main(output uint8 leds)
{
	int16 X[8]={1,2,3,4,5,6,7,8};
	algorithm
	{
		X[0] = X[0] + X[4];
		X[1] = X[1] + X[5];
		X[2] = X[2] + X[6];
		X[3] = X[3] + X[7];
++:
		X[0] = X[0] + X[2];
		X[1] = X[1] + X[3];
++:
		X[0] = X[0] + X[1];
		__display("%d",X[0]);
	}		
	
	
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant
0