From c5712bcb5fa6909bb7cae7d2740e2535a8cf5132 Mon Sep 17 00:00:00 2001
From: Michael Kuron <mkuron@icp.uni-stuttgart.de>
Date: Tue, 13 Apr 2021 14:54:19 +0000
Subject: [PATCH] fix error introduced in !230

---
 pystencils/backends/ppc_instruction_sets.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pystencils/backends/ppc_instruction_sets.py b/pystencils/backends/ppc_instruction_sets.py
index f79212761..d2d319976 100644
--- a/pystencils/backends/ppc_instruction_sets.py
+++ b/pystencils/backends/ppc_instruction_sets.py
@@ -78,7 +78,6 @@ def get_vector_instruction_set_ppc(data_type='double', instruction_set='vsx'):
         # Clang and XL C++ are missing these for doubles
         result['loadA'] = '(__vector double)' + result['loadA'].format('(float*) {0}')
         result['storeA'] = result['storeA'].format('(float*) {0}', '(__vector float) {1}')
-        result['stream'] = result['stream'].format('(float*) {0}', '(__vector float) {1}')
         result['storeAAndFlushCacheline'] = result['storeAAndFlushCacheline'].format('(float*) {0}',
                                                                                      '(__vector float) {1}')
 
-- 
GitLab