Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,164 for fetches (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        graph and must match the return type of the graph.
      }];
    
      let arguments = (ins
        Variadic<AnyType>:$fetches
      );
    
      let builders = [
        OpBuilder<(ins),
        [{
          build($_builder, $_state, {});
        }]>
       ];
    
      let assemblyFormat = "($fetches^ `:` type($fetches))? attr-dict";
    
      let hasVerifier = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go

    // Code generated by linux/mkall.go generatePtraceRegSet("arm64"). DO NOT EDIT.
    
    package unix
    
    import "unsafe"
    
    // PtraceGetRegSetArm64 fetches the registers used by arm64 binaries.
    func PtraceGetRegSetArm64(pid, addr int, regsout *PtraceRegsArm64) error {
    	iovec := Iovec{(*byte)(unsafe.Pointer(regsout)), uint64(unsafe.Sizeof(*regsout))}
    	return ptracePtr(PTRACE_GETREGSET, pid, uintptr(addr), unsafe.Pointer(&iovec))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 721 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/parallel_execute_to_islands.cc

          tf_executor::FetchOp fetch = graph_op.GetFetch();
          auto fetches = llvm::to_vector<8>(fetch.getOperands());
          fetches.append(unused_execute_controls.begin(),
                         unused_execute_controls.end());
          builder.setInsertionPoint(fetch);
          builder.create<tf_executor::FetchOp>(fetch.getLoc(), fetches);
          fetch.erase();
        }
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/CacheAwareExternalResourceAccessor.java

    import javax.annotation.Nullable;
    import java.io.File;
    import java.io.IOException;
    
    public interface CacheAwareExternalResourceAccessor {
        /**
         * Fetches for a resource located at some URI.
         * @param source the URI of the resource to be fetched
         * @param baseName the required name of the local resource. Can be null.
         * @param fileStore used whenever the resource is effectively downloaded, to move it into a cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. pkg/wasm/monitoring.go

    	wasmCacheEntries = monitoring.NewGauge(
    		"wasm_cache_entries",
    		"number of Wasm remote fetch cache entries.",
    	)
    
    	wasmCacheLookupCount = monitoring.NewSum(
    		"wasm_cache_lookup_count",
    		"number of Wasm remote fetch cache lookups.",
    	)
    
    	wasmRemoteFetchCount = monitoring.NewSum(
    		"wasm_remote_fetch_count",
    		"number of Wasm remote fetches and results, including success, download failure, and checksum mismatch.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/experimental/public/function_metadata.h

    namespace tensorflow {
    namespace experimental {
    namespace cc {
    
    // FunctionMetadata stores additional function information, including
    // optional signaturedef feeds/fetches (for TF1-based ConcreteFunctions),
    // a valid function path (for TF2-based ConcreteFunctions), and
    // the types + number of inputs and outputs.
    class FunctionMetadata final {
      // TODO(bmzhao): Add getters here as necessary.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

        tf_executor.fetch %1#0 : tensor<4x!tf_type.f32ref>
      }
      func.return %fetches : tensor<4x!tf_type.f32ref>
    }
    
    // -----
    
    // Check that switchN data operand is broadcastable with all output types
    func.func @invalid_switchN(%arg0: tensor<*xf32>, %arg1: tensor<i32>) -> tensor<*xf32> {
      %fetches = tf_executor.graph {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  8. pilot/pkg/util/informermetric/informerutil.go

    		"controller_sync_errors_total",
    		"Total number of errorMetric syncing controllers.",
    	)
    
    	mu       sync.RWMutex
    	handlers = map[cluster.ID]cache.WatchErrorHandler{}
    )
    
    // ErrorHandlerForCluster fetches or creates an ErrorHandler that emits a metric
    // and logs when a watch error occurs. For use with SetWatchErrorHandler on SharedInformer.
    func ErrorHandlerForCluster(clusterID cluster.ID) cache.WatchErrorHandler {
    	mu.RLock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/graph_pruning.cc

    void GraphPruningPass::PruneGraph(GraphOp graph) {
      // A graph has a single block which forms a DAG: operations that aren't
      // reachable from the `fetch` operands can be eliminated.
    
      llvm::SmallPtrSet<Operation*, 8> reachable_ops;
      llvm::SmallVector<Operation*, 8> ops_to_visit;
    
      // Visit fetches first to create a starting point for ops that are reachable.
      reachable_ops.insert(graph.GetFetch());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ObjectHolder.java

     * limitations under the License.
     */
    
    package org.gradle.cache;
    
    /**
     * A persistent store containing an object of type T.
     */
    public interface ObjectHolder<T> {
        /**
         * Fetches the value from this cache. A shared or exclusive lock is held while fetching the value, depending on implementation.
         */
        T get();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top