GraphCompiler 용 연산 리스트 생성
📊 컴파일된 그래프 연산 목록:00: {'input_idx': None, 'output_idx': None, 'op_type': 5, 'W': None, 'b': None, 'param_idx': None}01: {'input_idx': None, 'param_idx': None, 'output_idx': None, 'op_type': 0, 'W_shape': None, 'W': array([[ 0.3284561 , 2.98971941, 0.28608096, 0.10709452, 0.37845299, 1.27242187, 0.68838014, 0.38284216, -1.26867333, -0.39435668]])}02: {'input_idx': None, 'param_idx':..
graph_ops 에 담긴 정보, operation plan
현재 graph_ops 의 구성[ ("matmul", "x0", "dense1_W", "dense1_out"), ("add", "dense1_out", "dense1_b", "dense1_out"), ("activation", "sigmoid", "dense1_out", "sig1_out")] 이 정보는 어떤 연산을 어떤 노드들 사이에 연결할지만 표현, 그 값이나 shape, dtype 등은 포함되어 있지 않음가중치 정보는 각 레이어 객체 내부에 존재한다. ✅ 실행 시 전체 흐름 구조Sequential.compile_graph()연산 계획(graph_ops)만 생성GraphCompiler or BackendExecutor해당 계획을 기반으로 CUDA 실행 준비BackendExecutor...