org.nd4j.jita.flow.FlowController Maven / Gradle / Ivy
The newest version!
/*
* ******************************************************************************
* *
* *
* * This program and the accompanying materials are made available under the
* * terms of the Apache License, Version 2.0 which is available at
* * https://www.apache.org/licenses/LICENSE-2.0.
* *
* * See the NOTICE file distributed with this work for additional
* * information regarding copyright ownership.
* * Unless required by applicable law or agreed to in writing, software
* * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* * License for the specific language governing permissions and limitations
* * under the License.
* *
* * SPDX-License-Identifier: Apache-2.0
* *****************************************************************************
*/
package org.nd4j.jita.flow;
import org.nd4j.jita.allocator.Allocator;
import org.nd4j.jita.allocator.impl.AllocationPoint;
import org.nd4j.jita.allocator.pointers.cuda.cudaStream_t;
import org.nd4j.jita.concurrency.EventsProvider;
import org.nd4j.linalg.api.ndarray.INDArray;
import org.nd4j.linalg.jcublas.context.CudaContext;
/**
* Interface describing flow controller.
*
* @author [email protected]
*/
public interface FlowController {
void init(Allocator allocator);
/**
* This method ensures, that all asynchronous operations on referenced AllocationPoint are finished, and host memory state is up-to-date
*
* @param point
*/
void synchronizeToHost(AllocationPoint point);
/**
* This method ensures, that all asynchronous operations on referenced AllocationPoint are finished, and device memory state is up-to-date
*
* @param point
*/
void synchronizeToDevice(AllocationPoint point);
/**
* This method ensures, that all asynchronous operations on referenced AllocationPoint are finished
* @param point
*/
void waitTillFinished(AllocationPoint point);
/**
* This method is called after operation was executed
*
* @param result
* @param operands
*/
void registerAction(CudaContext context, INDArray result, INDArray... operands);
void registerActionAllWrite(CudaContext context, INDArray... operands);
/**
* This method is called before operation was executed
*
* @param result
* @param operands
*/
CudaContext prepareAction(INDArray result, INDArray... operands);
/**
*
*
* @param operands
* @return
*/
CudaContext prepareActionAllWrite(INDArray... operands);
CudaContext prepareAction(AllocationPoint result, AllocationPoint... operands);
void registerAction(CudaContext context, AllocationPoint result, AllocationPoint... operands);
void waitTillReleased(AllocationPoint point);
/**
* This method should be called after memcpy operations, to control their flow.
*/
void commitTransfer(cudaStream_t streamUsed);
EventsProvider getEventsProvider();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy