org.nd4j.jita.concurrency.EventsProvider 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.concurrency;
import org.nd4j.jita.allocator.pointers.cuda.cudaEvent_t;
import org.nd4j.linalg.factory.Nd4j;
import org.nd4j.nativeblas.NativeOpsHolder;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.AtomicLong;
/**
*
* @author [email protected]
*/
@Deprecated
public class EventsProvider {
private List> queue = new ArrayList<>();
private AtomicLong newCounter = new AtomicLong(0);
private AtomicLong cacheCounter = new AtomicLong(0);
public EventsProvider() {
int numDev = Nd4j.getAffinityManager().getNumberOfDevices();
for (int i = 0; i < numDev; i++) {
queue.add(new ConcurrentLinkedQueue());
}
}
public cudaEvent_t getEvent() {
int deviceId = Nd4j.getAffinityManager().getDeviceForCurrentThread();
cudaEvent_t e = queue.get(deviceId).poll();
if (e == null) {
e = new cudaEvent_t(NativeOpsHolder.getInstance().getDeviceNativeOps().createEvent());
e.setDeviceId(deviceId);
newCounter.incrementAndGet();
} else
cacheCounter.incrementAndGet();
return e;
}
public void storeEvent(cudaEvent_t event) {
if (event != null)
// NativeOpsHolder.getInstance().getDeviceNativeOps().destroyEvent(event);
queue.get(event.getDeviceId()).add(event);
}
public long getEventsNumber() {
return newCounter.get();
}
public long getCachedNumber() {
return cacheCounter.get();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy