repo_id
stringclasses
400 values
commit_sha
stringclasses
400 values
commit_index
int32
0
951
in_repo_split
stringclasses
1 value
cross_repo_split
stringclasses
1 value
test_file
stringlengths
7
121
test_function
stringlengths
1
108
assertion_type
stringclasses
32 values
difficulty
stringclasses
8 values
context_lines
int32
3
600
prefix
large_stringlengths
44
113k
target
large_stringlengths
1
498
anchor_sha
stringclasses
400 values
anchor_index
int32
0
951
qna_source
stringclasses
1 value
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_timeline_event_control.py
test_event_control_linear_interpolation
pytest.approx
complex_expr
27
import isobar as iso import pytest import math from . import dummy_timeline def test_event_control_linear_interpolation(dummy_timeline): """ Linear interpolation between control points. """ control_series = iso.PSequence([1, 3, 2], 1) dummy_timeline.ticks_per_beat = 10 dummy_timeline.schedule({...
values, rel=0.01)
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_timeline_event_control.py
test_event_control_cosine_interpolation
pytest.approx
complex_expr
25
import isobar as iso import pytest import math from . import dummy_timeline def test_event_control_cosine_interpolation(dummy_timeline): """ Linear interpolation between control points. """ alternator = iso.PSequence([0, 1]) dummy_timeline.ticks_per_beat = 10 dummy_timeline.schedule({ i...
values, rel=0.000001)
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_timeline_event_control.py
test_event_control_linear_interpolation_zero_duration
pytest.approx
complex_expr
20
import isobar as iso import pytest import math from . import dummy_timeline def test_event_control_linear_interpolation_zero_duration(dummy_timeline): control_series = iso.PSequence([0, 1]) duration_series = iso.PSequence([1, 0]) dummy_timeline.ticks_per_beat = 10 dummy_timeline.schedule({ iso....
values, rel=0.0000001)
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_timeline_event_control.py
test_event_control_linear_interpolation
assert
func_call
27
import isobar as iso import pytest import math from . import dummy_timeline def test_event_control_linear_interpolation(dummy_timeline): """ Linear interpolation between control points. """ control_series = iso.PSequence([1, 3, 2], 1) dummy_timeline.ticks_per_beat = 10 dummy_timeline.schedule({...
pytest.approx(values, rel=0.01)
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_timeline_event_control.py
test_event_control_cosine_interpolation
assert
func_call
25
import isobar as iso import pytest import math from . import dummy_timeline def test_event_control_cosine_interpolation(dummy_timeline): """ Linear interpolation between control points. """ alternator = iso.PSequence([0, 1]) dummy_timeline.ticks_per_beat = 10 dummy_timeline.schedule({ i...
pytest.approx(values, rel=0.000001)
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_timeline_event_control.py
test_event_control_linear_interpolation_zero_duration
assert
func_call
20
import isobar as iso import pytest import math from . import dummy_timeline def test_event_control_linear_interpolation_zero_duration(dummy_timeline): control_series = iso.PSequence([0, 1]) duration_series = iso.PSequence([1, 0]) dummy_timeline.ticks_per_beat = 10 dummy_timeline.schedule({ iso....
pytest.approx(values, rel=0.0000001)
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_timeline_event_control.py
test_event_control_linear_interpolation
assert
collection
26
import isobar as iso import pytest import math from . import dummy_timeline def test_event_control_linear_interpolation(dummy_timeline): """ Linear interpolation between control points. """ control_series = iso.PSequence([1, 3, 2], 1) dummy_timeline.ticks_per_beat = 10 dummy_timeline.schedule({...
(dummy_timeline.ticks_per_beat * 1.5) + 1
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_timeline_event_control.py
test_event_control_no_interpolation
assert
collection
20
import isobar as iso import pytest import math from . import dummy_timeline def test_event_control_no_interpolation(dummy_timeline): """ Simple case: schedule a series of regularly-spaced control points. Output device should receive discrete control events. """ control_series = iso.PSeries(start=1,...
[ [0, "control", 0, 1, 9], [1, "control", 0, 3, 9], [2, "control", 0, 5, 9] ]
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_timeline_event_supercollider.py
test_event_supercollider
assert
collection
17
import isobar as iso import pytest from . import dummy_timeline def test_event_supercollider(dummy_timeline): output_device = DummySuperColliderOutputDevice() dummy_timeline.output_device = output_device dummy_timeline.schedule({ iso.EVENT_SUPERCOLLIDER_SYNTH: iso.PSequence([ "foo", "bar" ]), ...
[ ["foo", {"buffer": 1, "rate": 0.5}], ["bar", {"buffer": 2, "rate": 1}], ["foo", {"buffer": 1, "rate": 2}], ]
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_timeline_track.py
test_track_update
assert
collection
37
import isobar as iso import pytest from . import dummy_timeline def dummy_track(): return iso.Track(output_device=iso.io.DummyOutputDevice()) def test_track_update(dummy_timeline): #-------------------------------------------------------------------------------- # Test that a track can be updated properly...
[ [0, 'note_on', 50, 64, 0], [1, 'note_off', 50, 0], [1, 'note_on', 50, 64, 0], [2, 'note_off', 50, 0], [2, 'note_on', 50, 64, 0], [3, 'note_off', 50, 0], [3, 'note_on', 50, 64, 0], [4, 'note_off', 50, 0], [4, 'note_on', 60, 64, 0], [5, 'note_off', 60, 0], [5, 'note_on', 60, 64, 0], [6, 'note_off', 60, 0], [6, 'note_on...
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_util.py
test_util_note_name_to_midi_note
assert
numeric_literal
17
import isobar as iso def test_util_note_name_to_midi_note(): assert iso.note_name_to_midi_note('C-1') == 60 - 60 assert iso.note_name_to_midi_note('C0') == 60 - 48 assert iso.note_name_to_midi_note('C1') == 60 - 36 assert iso.note_name_to_midi_note('C2') == 60 - 24 assert iso.note_name_to_midi_note...
0
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_util.py
test_util_note_name_to_midi_note
assert
numeric_literal
10
import isobar as iso def test_util_note_name_to_midi_note(): assert iso.note_name_to_midi_note('C-1') == 60 - 60 assert iso.note_name_to_midi_note('C0') == 60 - 48 assert iso.note_name_to_midi_note('C1') == 60 - 36 assert iso.note_name_to_midi_note('C2') == 60 - 24 assert iso.note_name_to_midi_note...
60
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_util.py
test_util_note_name_to_midi_note
assert
numeric_literal
18
import isobar as iso def test_util_note_name_to_midi_note(): assert iso.note_name_to_midi_note('C-1') == 60 - 60 assert iso.note_name_to_midi_note('C0') == 60 - 48 assert iso.note_name_to_midi_note('C1') == 60 - 36 assert iso.note_name_to_midi_note('C2') == 60 - 24 assert iso.note_name_to_midi_note...
61
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_util.py
test_util_midi_note_to_note_name
assert
string_literal
6
import isobar as iso def test_util_midi_note_to_note_name(): assert iso.midi_note_to_note_name(60 - 60) == 'C-1' assert iso.midi_note_to_note_name(60 - 48) ==
'C0'
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_util.py
test_util_midi_note_to_note_name
assert
string_literal
7
import isobar as iso def test_util_midi_note_to_note_name(): assert iso.midi_note_to_note_name(60 - 60) == 'C-1' assert iso.midi_note_to_note_name(60 - 48) == 'C0' assert iso.midi_note_to_note_name(60 - 36) ==
'C1'
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_util.py
test_util_midi_note_to_note_name
assert
string_literal
8
import isobar as iso def test_util_midi_note_to_note_name(): assert iso.midi_note_to_note_name(60 - 60) == 'C-1' assert iso.midi_note_to_note_name(60 - 48) == 'C0' assert iso.midi_note_to_note_name(60 - 36) == 'C1' assert iso.midi_note_to_note_name(60 - 24) ==
'C2'
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_util.py
test_util_midi_note_to_note_name
assert
string_literal
9
import isobar as iso def test_util_midi_note_to_note_name(): assert iso.midi_note_to_note_name(60 - 60) == 'C-1' assert iso.midi_note_to_note_name(60 - 48) == 'C0' assert iso.midi_note_to_note_name(60 - 36) == 'C1' assert iso.midi_note_to_note_name(60 - 24) == 'C2' assert iso.midi_note_to_note_nam...
'C3'
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
ideoforms/isobar
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
train
train
tests/test_util.py
test_util_midi_note_to_note_name
assert
string_literal
11
import isobar as iso def test_util_midi_note_to_note_name(): assert iso.midi_note_to_note_name(60 - 60) == 'C-1' assert iso.midi_note_to_note_name(60 - 48) == 'C0' assert iso.midi_note_to_note_name(60 - 36) == 'C1' assert iso.midi_note_to_note_name(60 - 24) == 'C2' assert iso.midi_note_to_note_name...
'C4'
92601c8db7a9107ff3b9f8d480b8cd21415c0915
87
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
loopy/auto_test.py
make_args
assert
complex_expr
201
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
arg_desc.ref_shape
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_apps.py
test_domain_tree_nesting
assert
numeric_literal
102
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
2
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_apps.py
test_fd_demo
assert
variable
71
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
code
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_apps.py
test_prefetch_through_indirect_access
pytest.raises
variable
63
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
LoopyError)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_apps.py
test_unsigned_types_to_mod
assert
func_call
56
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
lp.generate_code_v2(knl).device_code()
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_c_execution.py
test_one_length_loop
assert
numeric_literal
44
__copyright__ = "Copyright (C) 2017 Nick Curtis" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify...
42
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_c_execution.py
test_c_caching
assert
variable
105
__copyright__ = "Copyright (C) 2017 Nick Curtis" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify...
logs
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_c_execution.py
test_missing_compilers
assert
string_literal
85
__copyright__ = "Copyright (C) 2017 Nick Curtis" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify...
"foo"
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_c_execution.py
test_scalar_global_args
assert
func_call
42
__copyright__ = "Copyright (C) 2017 Nick Curtis" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify...
n*(n-1)/2
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_c_execution.py
test_missing_compilers
pytest.raises
variable
89
__copyright__ = "Copyright (C) 2017 Nick Curtis" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify...
ExecError)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_c_execution.py
test_missing_compilers
pytest.raises
variable
79
__copyright__ = "Copyright (C) 2017 Nick Curtis" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify...
AttributeError)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_c_execution.py
test_c_execution_with_global_temporaries
assert
func_call
56
__copyright__ = "Copyright (C) 2017 Nick Curtis" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify...
lp.generate_code_v2(knl).host_code()
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_callables.py
test_call_kernel_w_preds
assert_*
numeric_literal
69
__copyright__ = "Copyright (C) 2018 Kaushik Kulkarni" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, m...
1)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_callables.py
test_call_kernel_w_preds
assert_*
numeric_literal
70
__copyright__ = "Copyright (C) 2018 Kaushik Kulkarni" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, m...
2)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_callables.py
test_multi_arg_array_call
assert
variable
83
__copyright__ = "Copyright (C) 2018 Kaushik Kulkarni" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, m...
tol
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_callables.py
test_c_instruction_in_callee
assert
complex_expr
72
__copyright__ = "Copyright (C) 2018 Kaushik Kulkarni" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, m...
n-1
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_callables.py
test_int_max_min_c_target
assert_*
variable
56
__copyright__ = "Copyright (C) 2018 Kaushik Kulkarni" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, m...
out)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_callables.py
test_register_function_lookup
assert
numeric_literal
56
__copyright__ = "Copyright (C) 2018 Kaushik Kulkarni" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, m...
1e-15
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_callables.py
test_global_temp_var_with_base_storage
assert
collection
64
__copyright__ = "Copyright (C) 2018 Kaushik Kulkarni" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, m...
[1, 2]
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_callables.py
test_passing_scalar_as_indexed_subcript_in_clbl_knl
assert_*
complex_expr
65
__copyright__ = "Copyright (C) 2018 Kaushik Kulkarni" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, m...
2*x_in)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_callables.py
test_symbol_mangler_in_call
assert_*
func_call
56
__copyright__ = "Copyright (C) 2018 Kaushik Kulkarni" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, m...
np.sin(10))
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_callables.py
test_incomplete_entrypoint_raises_type_inf_failure
pytest.raises
variable
57
__copyright__ = "Copyright (C) 2018 Kaushik Kulkarni" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, m...
LoopyError)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_domain.py
test_dependent_loop_bounds_3
assert
numeric_literal
70
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
0
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_domain.py
test_assume
assert
variable
57
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
code
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_domain.py
test_independent_multi_domain
assert
collection
75
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
(50,)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_domain.py
test_independent_multi_domain
assert
complex_expr
70
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
2*[None]
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_domain.py
test_dependent_loop_bounds_3
pytest.raises
variable
80
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
RuntimeError)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_einsum.py
test_einsum_array_manipulation
assert
numeric_literal
50
__copyright__ = "Copyright (C) 2021 University of Illinois Board of Trustees" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation th...
1e-15
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_einsum.py
test_make_einsum_error_handling
pytest.raises
variable
34
__copyright__ = "Copyright (C) 2021 University of Illinois Board of Trustees" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation th...
ValueError)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_expression.py
test_divide_precedence
assert
numeric_literal
222
__copyright__ = "Copyright (C) 2019 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
4
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_expression.py
test_divide_precedence
assert
numeric_literal
223
__copyright__ = "Copyright (C) 2019 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
2
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_expression.py
test_complex_support
assert_*
numeric_literal
253
__copyright__ = "Copyright (C) 2019 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
0)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_expression.py
test_complex_support
assert_*
numeric_literal
250
__copyright__ = "Copyright (C) 2019 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
-1)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_expression.py
test_np_bool_handling
assert
bool_literal
217
__copyright__ = "Copyright (C) 2019 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
True
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_expression.py
test_real_with_real_argument
assert
complex_expr
221
__copyright__ = "Copyright (C) 2019 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
ary.dtype
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_expression.py
make_random_int_expression
assert
variable
124
__copyright__ = "Copyright (C) 2019 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
var_values
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_expression.py
assert_parse_roundtrip
assert
variable
204
__copyright__ = "Copyright (C) 2019 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
parsed_expr
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_expression.py
test_complex_support
assert_*
func_call
254
__copyright__ = "Copyright (C) 2019 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
in1*(in2*1j))
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_expression.py
test_real_with_real_argument
assert_*
func_call
222
__copyright__ = "Copyright (C) 2019 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
np.real(ary.get()))
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_expression.py
test_bool_type_context
assert
func_call
222
__copyright__ = "Copyright (C) 2019 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
np.logical_and(7.0, 8.0)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_expression.py
test_integer_associativity
assert
func_call
223
__copyright__ = "Copyright (C) 2019 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
lp.generate_code_v2(knl).device_code()
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_fortran.py
test_tagged
assert
numeric_literal
70
__copyright__ = "Copyright (C) 2015 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
2
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_fortran.py
test_matmul
assert
numeric_literal
75
__copyright__ = "Copyright (C) 2015 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
1
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_fortran.py
test_assign_single_precision_scalar
assert
numeric_literal
64
__copyright__ = "Copyright (C) 2015 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
1e-6
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_fortran.py
test_assign_double_precision_scalar
assert
numeric_literal
64
__copyright__ = "Copyright (C) 2015 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
1e-15
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_fortran.py
test_fp_prec_comparison
assert
variable
70
__copyright__ = "Copyright (C) 2015 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
prg_dp
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_fortran.py
test_fill
assert
func_call
70
__copyright__ = "Copyright (C) 2015 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
knl["fill"].all_inames()
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_fortran.py
test_assignment_to_subst_indices
assert
complex_expr
68
__copyright__ = "Copyright (C) 2015 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
knl["fill"].temporary_variables
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_fortran.py
test_assign_double_precision_scalar
assert
func_call
58
__copyright__ = "Copyright (C) 2015 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
lp.generate_code_v2(t_unit).device_code()
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_fusion.py
test_write_block_matrix_fusion
assert_*
variable
140
__copyright__ = "Copyright (C) 2021 University of Illinois Board of Trustees" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation th...
answer)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_fusion.py
test_two_kernel_fusion
assert_*
func_call
53
__copyright__ = "Copyright (C) 2021 University of Illinois Board of Trustees" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation th...
np.arange(100, 110))
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_isl.py
test_simplify_via_aff_reproducibility
assert
variable
32
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
expr
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_isl.py
test_subst_into_pwaff
assert
variable
39
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
expected
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_isl.py
test_aff_to_expr_2
assert
collection
31
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
(-1)*i0 + 2*(i0 // 2)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_isl.py
test_qpolynomrial_to_expr
assert
collection
37
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
(4*i + 6*j + 3*k) // 12
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_isl.py
test_pw_aff_to_conditional_expr
assert
string_literal
30
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
"0 if i == 0 else -1 + i"
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_loopy.py
test_kernel_splitting
assert
numeric_literal
71
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
2
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_loopy.py
test_unschedulable_kernel_detection
assert
numeric_literal
76
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
4
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_loopy.py
test_regression_no_ret_call_removal
assert
numeric_literal
69
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
3
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_loopy.py
test_const_temp_with_initializer_not_saved
assert
numeric_literal
83
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
1
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_loopy.py
test_relaxed_stride_checks
assert
numeric_literal
105
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
0
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_loopy.py
test_unschedulable_kernel_detection
assert
numeric_literal
91
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
10
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_loopy.py
test_type_inference_no_artificial_doubles
assert
variable
63
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
code
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_loopy.py
test_bare_data_dependency
assert
collection
67
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
(n,)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_loopy.py
test_globals_decl_once_with_multi_subprogram
assert
numeric_literal
70
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
1e-15
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_loopy.py
test_ilp_write_race_avoidance_private
assert
collection
59
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
(16,)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_loopy.py
test_offsets_and_slicing
assert
numeric_literal
81
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
1e-13
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_loopy.py
test_parameter_inference
assert
collection
92
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
{"n"}
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_loopy.py
test_wildcard_dep_matching
assert
func_call
104
__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, ...
set()
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_misc.py
test_LazilyUnpicklingDict
assert
numeric_literal
77
__copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, ...
0
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_misc.py
test_Optional
assert
numeric_literal
62
__copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, ...
1
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_misc.py
test_memoize_on_disk
assert
numeric_literal
57
__copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, ...
4
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_misc.py
test_LazilyUnpicklingListWithEqAndPersistentHashing
assert
variable
75
__copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, ...
lst
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_misc.py
test_memoize_on_disk_with_pym_expr
assert
numeric_literal
60
__copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, ...
1.5
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_misc.py
test_LazilyUnpicklingListWithEqAndPersistentHashing
assert
variable
54
__copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, ...
lst1
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_misc.py
test_LazilyUnpicklingListWithEqAndPersistentHashing
assert
variable
74
__copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, ...
lst0
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_misc.py
test_Optional
assert
complex_expr
48
__copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, ...
opt.value
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_misc.py
test_Optional
assert
func_call
52
__copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, ...
Optional()
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_misc.py
test_SetTrie
pytest.raises
variable
48
__copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, ...
ValueError)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_misc.py
test_Optional
assert
func_call
50
__copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, ...
Optional(1)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_misc.py
test_Optional
assert
func_call
51
__copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, ...
Optional(2)
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor
inducer/loopy
04fb70333121667d9f7731d075069ad7e24fa759
315
train
train
test/test_misc.py
test_memoize_on_disk
assert
variable
58
__copyright__ = "Copyright (C) 2016 Matt Wala" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, ...
uncached_knl
04fb70333121667d9f7731d075069ad7e24fa759
315
v2_extractor_at_anchor