FUTHARK-TEST(1) | Futhark | FUTHARK-TEST(1) |
futhark-test - test Futhark programs
futhark test [options...] infiles...
Test Futhark programs based on input/output datasets. All contained .fut files within a given directory are considered. By default, tests are carried out with compiled code. This can be changed with the -i option.
A Futhark test program is an ordinary Futhark program, with at least one test block describing input/output test cases and possibly other options. The last line must end in a newline. A test block consists of commented-out text with the following overall format:
description == cases...
The description is an arbitrary (and possibly multiline) human-readable explanation of the test program. It is separated from the test cases by a line containing just ==. Any comment starting at the beginning of the line, and containing a line consisting of just ==, will be considered a test block. The format of a test case is as follows:
[tags { tags... }] [entry: names...] ["name..."] [compiled|nobench|random|script] input ({ values... } | @ filename) output { values... } | auto output | error: regex
If a test case begins with a quoted string, that string is reported as the dataset name, including in the JSON file produced by futhark-bench. If no name is provided, one is automatically generated. The name must be unique across all test cases.
If compiled is present before the input keyword, this test case will never be passed to the interpreter. This is useful for test cases that are annoyingly slow to interpret. The nobench keyword is for data sets that are too small to be worth benchmarking, and only has meaning to futhark-bench.
If input is preceded by random, the text between the curly braces must consist of a sequence of Futhark types, including sizes in the case of arrays. When futhark test is run, a file located in a data/ subdirectory, containing values of the indicated types and shapes is, automatically constructed with futhark-dataset. Apart from sizes, integer constants (with or without type suffix), and floating-point constants (always with type suffix) are also permitted.
If input is preceded by script, the text between the curly braces is interpreted as a FutharkScript expression (see futhark-literate), which is executed to generate the input. It must use only functions explicitly declared as entry points. If the expression produces an n-element tuple, it will be unpacked and its components passed as n distinct arguments to the test function. The only builtin functions supported are $loaddata and $loadbytes.
If input is followed by an @ and a file name (which must not contain any whitespace) instead of curly braces, values will be read from the indicated file. This is recommended for large data sets. This notation cannot be used with random input. With script input, the file contents will be interpreted as a FutharkScript expression.
After the input block, the expected result of the test case is written as either output followed by another block of values, or error: followed by a regex indicating an expected run-time error. If neither output nor error is given, the program will be expected to execute succesfully, but its output will not be validated.
If output is preceded by auto (as in auto output), the expected values are automatically generated by compiling the program with futhark c and recording its result for the given input (which must not fail). This is usually only useful for testing or benchmarking alternative compilers, and not for testing the correctness of Futhark programs. This currently does not work for script inputs.
Alternatively, instead of input-output pairs, the test cases can simply be a description of an expected compile time type error:
error: regex
This is used to test the type checker.
Tuple syntax is not supported when specifying input and output values. Instead, you can write an N-tuple as its constituent N values. Beware of syntax errors in the values - the errors reported by futhark test are very poor.
An optional tags specification is permitted in the first test block. This section can contain arbitrary tags that classify the benchmark:
tags { names... }
Tag are sequences of alphanumeric characters, dashes, and underscores, with each tag seperated by whitespace. Any program with the disable tag is ignored by futhark test.
Another optional directive is entry, which specifies the entry point to be used for testing. This is useful for writing programs that test libraries with multiple entry points. Multiple entry points can be specified on the same line by separating them with space, and they will all be tested with the same input/output pairs. The entry directive affects subsequent input-output pairs in the same comment block, and may only be present immediately preceding these input-output pairs. If no entry is given, main is assumed. See below for an example.
For many usage examples, see the tests directory in the Futhark source directory. A simple example can be found in EXAMPLES below.
futhark test prog.fut --backend=opencl --pass-option=-dHawaii
TMPDIR
The following program tests simple indexing and bounds checking:
-- Test simple indexing of an array. -- == -- tags { firsttag secondtag } -- input { [4,3,2,1] 1i64 } -- output { 3 } -- input { [4,3,2,1] 5i64 } -- error: Error* let main (a: []i32) (i: i64): i32 = a[i]
The following program contains two entry points, both of which are tested:
let add (x: i32) (y: i32): i32 = x + y -- Test the add1 function. -- == -- entry: add1 -- input { 1 } output { 2 } entry add1 (x: i32): i32 = add x 1 -- Test the sub1 function. -- == -- entry: sub1 -- input { 1 } output { 0 } entry sub1 (x: i32): i32 = add x (-1)
The following program contains an entry point that is tested with randomly generated data:
-- == -- random input { [100]i32 [100]i32 } auto output -- random input { [1000]i32 [1000]i32 } auto output let main xs ys = i32.product (map2 (*) xs ys)
futhark-bench, futhark-repl
2013-2020, DIKU, University of Copenhagen
January 6, 2025 | 0.25.23 |