-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed the ridiculous line ending problems (I think)
- Loading branch information
1 parent
5051bf2
commit 44e6fe7
Showing
593 changed files
with
672 additions
and
672 deletions.
There are no files selected for viewing
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
harness/benchmarks/resources/lpshead/Infinite-Scan_License.txt
100755 → 100644
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,45 @@ | ||
(* Standard type definitions*) | ||
type id = string | ||
type vec = float list | ||
type mat = vec list | ||
|
||
type constvar = | ||
| ConstInt of int | ||
| ConstVar of id | ||
|
||
(* values *) | ||
type value = | ||
| Unit | ||
| Bool of bool | ||
| Num of int | ||
| Float of float | ||
| VecLit of vec | ||
| MatLit of mat | ||
|
||
type unop = | ||
| Neg | ||
| Not | ||
| Swizzle of id | ||
type binop = | ||
| Eq | ||
| Leq | ||
| Lt | ||
| Geq | ||
| Gt | ||
| Or | ||
| And | ||
| Plus | ||
| Minus | ||
| Times | ||
| Div | ||
| CTimes (* Component-wise multiplication *) | ||
| Index | ||
|
||
(* Storage qualifiers *) | ||
type storage_qual = | ||
| In | ||
| Out | ||
| Const | ||
| Attribute | ||
| Uniform | ||
(* Standard type definitions*) | ||
type id = string | ||
type vec = float list | ||
type mat = vec list | ||
|
||
type constvar = | ||
| ConstInt of int | ||
| ConstVar of id | ||
|
||
(* values *) | ||
type value = | ||
| Unit | ||
| Bool of bool | ||
| Num of int | ||
| Float of float | ||
| VecLit of vec | ||
| MatLit of mat | ||
|
||
type unop = | ||
| Neg | ||
| Not | ||
| Swizzle of id | ||
type binop = | ||
| Eq | ||
| Leq | ||
| Lt | ||
| Geq | ||
| Gt | ||
| Or | ||
| And | ||
| Plus | ||
| Minus | ||
| Times | ||
| Div | ||
| CTimes (* Component-wise multiplication *) | ||
| Index | ||
|
||
(* Storage qualifiers *) | ||
type storage_qual = | ||
| In | ||
| Out | ||
| Const | ||
| Attribute | ||
| Uniform | ||
| Varying |
Oops, something went wrong.