Clarify license on arrays test files.
This commit is contained in:
parent
d3da7c4c4f
commit
1506a5ed54
|
@ -1,3 +1,9 @@
|
||||||
|
/*
|
||||||
|
* Javascript binary array performance tests
|
||||||
|
* Copyright (C) 2011 Joel Martin
|
||||||
|
* Licensed under LGPL-3 (see LICENSE.txt)
|
||||||
|
*/
|
||||||
|
|
||||||
var ctx, i, j, randlist,
|
var ctx, i, j, randlist,
|
||||||
new_normal, new_imageData, new_arrayBuffer,
|
new_normal, new_imageData, new_arrayBuffer,
|
||||||
browser = Browser.browser + " " +
|
browser = Browser.browser + " " +
|
||||||
|
|
|
@ -1,4 +1,11 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
'''
|
||||||
|
Use matplotlib to generate performance charts
|
||||||
|
Copyright 2011 Joel Martin
|
||||||
|
Licensed under GPL version 3 (see docs/LICENSE.GPL-3)
|
||||||
|
'''
|
||||||
|
|
||||||
# a bar plot with errorbars
|
# a bar plot with errorbars
|
||||||
import sys, json, pprint
|
import sys, json, pprint
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
|
Loading…
Reference in New Issue