time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

manifest.json (1626B)


      1 {
      2 	"options": {
      3 		"task": "build"
      4 	},
      5 	"fields": [
      6 		{
      7 			"field": "src",
      8 			"resolve": true,
      9 			"relative": true
     10 		},
     11 		{
     12 			"field": "include",
     13 			"resolve": true,
     14 			"relative": true
     15 		},
     16 		{
     17 			"field": "libraries",
     18 			"resolve": false,
     19 			"relative": false
     20 		},
     21 		{
     22 			"field": "libpath",
     23 			"resolve": true,
     24 			"relative": false
     25 		}
     26 	],
     27 	"confs": [
     28 		{
     29 			"task": "build",
     30 			"src": [
     31 				"./src/cbrt.c"
     32 			],
     33 			"include": [
     34 				"./include"
     35 			],
     36 			"libraries": [
     37 				"-lm"
     38 			],
     39 			"libpath": [],
     40 			"dependencies": [
     41 				"@stdlib/math/base/napi/unary",
     42 				"@stdlib/math/base/assert/is-nan",
     43 				"@stdlib/math/base/assert/is-infinite",
     44 				"@stdlib/number/float64/base/from-words",
     45 				"@stdlib/number/float64/base/get-high-word",
     46 				"@stdlib/number/float64/base/set-high-word"
     47 			]
     48 		},
     49 		{
     50 			"task": "benchmark",
     51 			"src": [
     52 				"./src/cbrt.c"
     53 			],
     54 			"include": [
     55 				"./include"
     56 			],
     57 			"libraries": [
     58 				"-lm"
     59 			],
     60 			"libpath": [],
     61 			"dependencies": [
     62 				"@stdlib/math/base/assert/is-nan",
     63 				"@stdlib/math/base/assert/is-infinite",
     64 				"@stdlib/number/float64/base/from-words",
     65 				"@stdlib/number/float64/base/get-high-word",
     66 				"@stdlib/number/float64/base/set-high-word"
     67 			]
     68 		},
     69 		{
     70 			"task": "examples",
     71 			"src": [
     72 				"./src/cbrt.c"
     73 			],
     74 			"include": [
     75 				"./include"
     76 			],
     77 			"libraries": [
     78 				"-lm"
     79 			],
     80 			"libpath": [],
     81 			"dependencies": [
     82 				"@stdlib/math/base/assert/is-nan",
     83 				"@stdlib/math/base/assert/is-infinite",
     84 				"@stdlib/number/float64/base/from-words",
     85 				"@stdlib/number/float64/base/get-high-word",
     86 				"@stdlib/number/float64/base/set-high-word"
     87 			]
     88 		}
     89 	]
     90 }