File tree 4 files changed +0
-226
lines changed
4 files changed +0
-226
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ Authors: Paul Govereau, Sean McLaughlin
6
6
import KLR.BIR
7
7
import KLR.Core
8
8
import KLR.Eval
9
- import KLR.NEFF
10
9
import KLR.NKI
11
10
import KLR.Python
12
11
import KLR.Serde
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import KLR
2
2
import KLR.BIR.Compile
3
3
import Cli
4
4
import KLR.Eval
5
- import KLR.NEFF
6
5
import KLR.Util
7
6
import KLR.Util.Gzip
8
7
import TensorLib.Npy
@@ -237,12 +236,6 @@ def parseBIR (p : Parsed) : IO UInt32 := do
237
236
IO.println $ asString p bir
238
237
return 0
239
238
240
- def neffInfo (p : Parsed) : IO UInt32 := do
241
- let file := p.positionalArg! "file" |>.as! String
242
- let neff <- NEFF.File.read file
243
- IO.println (repr neff)
244
- return 0
245
-
246
239
def nkiToKLR (p : Parsed) : IO UInt32 := do
247
240
let debug := p.hasFlag "debug"
248
241
let file := p.positionalArg! "moduleFileName" |>.as! String
@@ -361,14 +354,6 @@ def parseBIRCmd := `[Cli|
361
354
file : String; "File of BIR JSON"
362
355
]
363
356
364
- def neffInfoCmd := `[Cli|
365
- "neff-info" VIA neffInfo;
366
- "Parse a NEFF file"
367
-
368
- ARGS:
369
- file : String; "NEFF file"
370
- ]
371
-
372
357
def nkiToKLRCmd := `[Cli|
373
358
"nki-to-klr" VIA nkiToKLR;
374
359
"Compile NKI kernel to KLR"
@@ -409,7 +394,6 @@ def klrCmd : Cmd := `[Cli|
409
394
compileCmd;
410
395
evalKLRCmd;
411
396
gatherCmd;
412
- neffInfoCmd;
413
397
nkiToKLRCmd;
414
398
parseASTCmd;
415
399
parseKLRCmd;
You can’t perform that action at this time.
0 commit comments