Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 263 for Function1 (0.16 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

    // CHECK: %[[GATHER:.*]] = "stablehlo.gather"(%arg0, %arg1)
    // CHECK: return %[[GATHER]] : tensor<2x3x2x2xi32>
    // CHECK: }
    
    // -----
    
    // Test that the name of composite functions are deterministic. There are 3
    // unsorted functions in this module and each function has 2 quantizable ops.
    module {
      func.func @conv_3_fn(%arg0: tensor<1x3x3x4xf32>) -> tensor<1x3x3x4xf32> {
        %0 = stablehlo.constant dense<2.000000e+00> : tensor<3x3x4x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    // policies (both alpha and beta) in the system. The function always returns MTLSUnknown for external service.
    // The result is a best effort. It is because the PeerAuthentication is workload-based, this function is unable
    // to compute the correct service mTLS mode without knowing service to workload binding. For now, this
    // function uses only mesh and namespace level PeerAuthentication and ignore workload & port level policies.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        : public impl::ExtractOutsideCompilationPassBase<
              ExtractOutsideCompilation> {
      void runOnOperation() override;
    };
    
    // Build a function containing `ops` with `inputs` and `outputs` using
    // `builder`.  The `ops` are cloned and modified to use the function arguments
    // as inputs.
    FuncOp BuildFunction(llvm::ArrayRef<Operation*> ops,
                         llvm::ArrayRef<Value> inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    //
    // This function is needed to break a cycle. The main package needs to know
    // whether modules are enabled in order to install the module or GOPATH version
    // of 'go get', but Init reads the -modfile flag in 'go get', so it shouldn't
    // be called until the command is installed and flags are parsed. Instead of
    // calling Init and Enabled, the main package can call this function.
    func WillBeEnabled() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Iterators.java

          Iterator<F> fromIterator, Function<? super F, ? extends T> function) {
        checkNotNull(function);
        return new TransformedIterator<F, T>(fromIterator) {
          @ParametricNullness
          @Override
          T transform(@ParametricNullness F from) {
            return function.apply(from);
          }
        };
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Iterators.java

          Iterator<F> fromIterator, Function<? super F, ? extends T> function) {
        checkNotNull(function);
        return new TransformedIterator<F, T>(fromIterator) {
          @ParametricNullness
          @Override
          T transform(@ParametricNullness F from) {
            return function.apply(from);
          }
        };
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. tensorflow/c/kernels_test.cc

          .Output("output1: uint8")
          .Attr("SomeDataTypeAttr: type");
    
      static int num_inputs = 0;
      static int num_outputs = 0;
    
      // A kernel whose Compute function has a side-effect of updating num_inputs
      // and num_outputs. Various functions on TF_OpKernelContext are also
      // exercised.
      auto my_compute_func = [](void* kernel, TF_OpKernelContext* ctx) {
        num_inputs = TF_NumInputs(ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    			//    so the values of this block are more likely to be allocated to registers.
    			// 2, Avoid the predecessor that contains the function call, because the predecessor that
    			//    contains the function call usually generates a lot of spills and lose the previous
    			//    allocation state.
    			// TODO: Improve this part. At least the size of endRegs of the predecessor also has
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    	workQueue queue.WorkQueue
    
    	// This function is run to sync the desired state of pod.
    	// NOTE: This function has to be thread-safe - it can be called for
    	// different pods at the same time.
    	podSyncer podSyncer
    
    	// workerChannelFn is exposed for testing to allow unit tests to impose delays
    	// in channel communication. The function is invoked once each time a new worker
    	// goroutine starts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "CALLtail", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true, tailCall: true},                                  // tail call static function aux.(*obj.LSym).  arg0=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
Back to top