diff --git a/recipes/mojmelo/recipe.yaml b/recipes/mojmelo/recipe.yaml index 72711b3f..1dccd46e 100644 --- a/recipes/mojmelo/recipe.yaml +++ b/recipes/mojmelo/recipe.yaml @@ -1,5 +1,5 @@ context: - version: "0.0.4" + version: "0.0.5" package: name: "mojmelo" @@ -7,7 +7,7 @@ package: source: - git: https://github.com/yetalit/mojmelo.git - rev: 83d9602424e3fe6cf01d4db06655e5f1bb2acbcf + rev: 6b998d367b583e3eb9da6bda4ade710a718e1db2 build: number: 0 @@ -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') }} @@ -27,7 +27,7 @@ tests: - mojo tests/setup.mojo requirements: run: - - max =25.1 + - max =25.2 files: recipe: - tests/setup.mojo diff --git a/recipes/mojmelo/tests/mojmelo/utils/mojmelo_matmul/matmul.mojo b/recipes/mojmelo/tests/mojmelo/utils/mojmelo_matmul/matmul.mojo index 190d1b05..7c1dfd22 100644 --- a/recipes/mojmelo/tests/mojmelo/utils/mojmelo_matmul/matmul.mojo +++ b/recipes/mojmelo/tests/mojmelo/utils/mojmelo_matmul/matmul.mojo @@ -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 * diff --git a/recipes/mojmelo/tests/setup.mojo b/recipes/mojmelo/tests/setup.mojo index a613f9ed..5755bc25 100644 --- a/recipes/mojmelo/tests/setup.mojo +++ b/recipes/mojmelo/tests/setup.mojo @@ -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 @@ -136,7 +135,6 @@ fn main() raises: return from mojmelo.utils.Matrix import Matrix - from collections import InlineArray import time alias NUM_ITER = 16