UNPKG

@specs-feup/clava

Version:

A C/C++ source-to-source compiler written in Typescript

28 lines (22 loc) 730 B
import { Varref } from '../../../Joinpoints.js'; import MpiAccessPattern from '../MpiAccessPattern.js'; /** * Access to a scalar variable. */ export default class ScalarPattern extends MpiAccessPattern { sendMaster($varJp: Varref, totalIterations: string): string { throw "Not yet implemented"; } receiveMaster($varJp: Varref, totalIterations: string): string { throw "Not yet implemented"; } sendWorker($varJp: Varref, totalIterations: string): string { throw "Not yet implemented"; } receiveWorker($varJp: Varref, totalIterations: string): string { throw "Not yet implemented"; } outputDeclWorker($varJp: Varref, totalIterations: string): string { throw "Not yet implemented"; } }