Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions recipes/mojmelo/recipe.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
context:
version: "0.0.4"
version: "0.0.5"

package:
name: "mojmelo"
version: ${{ version }}

source:
- git: https://github.com/yetalit/mojmelo.git
rev: 83d9602424e3fe6cf01d4db06655e5f1bb2acbcf
rev: 6b998d367b583e3eb9da6bda4ade710a718e1db2

build:
number: 0
Expand All @@ -16,7 +16,7 @@ build:
- mojo package magic/mojmelo -o ${{ PREFIX }}/lib/mojo/mojmelo.mojopkg
requirements:
host:
- max =25.1
- max =25.2
run:
- ${{ pin_compatible('max') }}

Expand All @@ -27,7 +27,7 @@ tests:
- mojo tests/setup.mojo
requirements:
run:
- max =25.1
- max =25.2
files:
recipe:
- tests/setup.mojo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ from sys import has_avx512f, num_performance_cores, simdwidthof, sizeof
import benchmark
from testing import assert_equal
from utils import IndexList
from collections import InlineArray
import random
from .params import *

Expand Down
2 changes: 0 additions & 2 deletions recipes/mojmelo/tests/setup.mojo
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from sys import external_call, os_is_linux, os_is_macos, argv
from sys.ffi import *
from memory import UnsafePointer
from collections import InlineArray

fn cachel1() -> Int32:
var l1_cache_size: c_int = 0
Expand Down Expand Up @@ -136,7 +135,6 @@ fn main() raises:
return

from mojmelo.utils.Matrix import Matrix
from collections import InlineArray
import time

alias NUM_ITER = 16
Expand Down