Skip to content
This repository was archived by the owner on Feb 17, 2026. It is now read-only.
This repository was archived by the owner on Feb 17, 2026. It is now read-only.

cntk crash and pycharm process finished with exit code -1066598274 (0xC06D007E) #3882

@cheyennee

Description

@cheyennee

problem:
I run following code in pycharm, it outputs nothing, and pycharm process finished with exit code -1066598274 (0xC06D007E).

repo code:

import cntk as C
import numpy as np
output = C.input_variable((1, 1, 1, 1), dtype=np.float32, needs_gradient=True, name='output')
target = C.input_variable((1, 2, 3, 1), dtype=np.float32, name='target')
dot_output = C.binary_cross_entropy(output, target)
convolution_function = C.combine(dot_output)
output_data = np.random.random((1, 1, 1, 1)).astype('float32')
target_data = np.random.random((1, 2, 3, 1)).astype('float32')
result = convolution_function.eval({output: output_data, target: target_data})
print(result)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions