Questions tagged [x10-language]

X10 is a programming language developed by IBM that emphasizes parallelism for high-performance computing.

X10 is a parallel programming language which implements the Asynchronous Partitioned Global Address Space model. It is a statically typed, object-oriented language with a base syntax similar to Scala.

An X10 program executes over a collection of places, which are regions of uniform memory access. Multiple parallel activities operate on data within a place. An activity may spawn additional local or remote asynchronous activities, and detect their termination.

X10 is developed by IBM with community contributions, and is distributed as free software under the Eclipse Public Licence.

References

18 questions
0
votes
1 answer

X10 language deals with loose coupling or tight coupling?

Can anyone tell me if X10 lang (http://x10-lang.org/) works based on tight coupling or loose coupling systems?
Carlcox89
  • 583
  • 1
  • 4
  • 9
-1
votes
1 answer

write 8 bytes legth records to a file in java

I need to store fixed size records to a file. Each record has two Ids which share 4bytes per each. I'm doing my project in x10-language. If you can help me with x10 code it would be great. But even in Java, your support will be appreciated.
Isuru Herath
  • 298
  • 6
  • 20
-2
votes
2 answers

Import java library to a x10 class

I am doing a project in x10 language. Its back-end is java. I need to import some useful java libraries to x10 class. But when I build the project with ant, it gives build errors saying imported class name is not found. Then I tried to import them…
Isuru Herath
  • 298
  • 6
  • 20
1
2