[Tensorflow][CropAndResize] Potential bug or limitation -> AttributeError: '<class 'tvm.relay.expr.Call'>' object has no attribute 'name_hint'

@yongwww @srkreddy1238 @vinx13 Any ideas about this?

The only way that I was able to properly compile my model with CropAndResize was to remove the following assertion.

The test case located at test_forward.py works since all inputs given are constants. As soon as you use a Placeholder or another operator as input then you hit the error mentioned above.

The following is a minimal test model that also fails.

    image = tf.placeholder(tf.float32, shape=(1, 24, 42, 64), name='image')
    boxes = tf.placeholder(tf.float32, shape=(1, 4), name='boxes')
    box_ind = tf.zeros(shape=tf.shape(boxes)[0], dtype=tf.int32)
    crop_size = [4, 4]
    crop = tf.image.crop_and_resize(image, boxes, box_ind=box_ind, crop_size = crop_size, name='crop')