Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,000 for performs (0.11 sec)

  1. src/sync/atomic/doc.go

    func AddUintptr(addr *uintptr, delta uintptr) (new uintptr)
    
    // AndInt32 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old value.
    // Consider using the more ergonomic and less error-prone [Int32.And] instead.
    func AndInt32(addr *int32, mask int32) (old int32)
    
    // AndUint32 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

            ).astype('f4')
    
          @def_function.function
          def conv2d(self, input_tensor: core.Tensor) -> Mapping[str, core.Tensor]:
            """Performs a 2D convolution operation.
    
            Args:
              input_tensor: Input tensor to perform convolution on.
    
            Returns:
              A map of: output key -> output result.
            """
            scale = [1.0] * self.out_channel_size
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/types.go

    	Store8(&u.value, value)
    }
    
    // And takes value and performs a bit-wise
    // "and" operation with the value of u, storing
    // the result into u.
    //
    // The full process is performed atomically.
    //
    //go:nosplit
    func (u *Uint8) And(value uint8) {
    	And8(&u.value, value)
    }
    
    // Or takes value and performs a bit-wise
    // "or" operation with the value of u, storing
    // the result into u.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

        // If it's a BiasAdd, check that the conv op is the first input.
        if (bias_add && bias_add.getValue() == op) return bias_add;
      }
      // No BiasAddOps found among uses.
      return BiasAddOp();
    }
    
    // Performs a fusion of the following pattern(s), if possible:
    //   <Contraction> + BiasAdd + <Activation> -> <FusedContraction>
    //
    // Note that fusion with activation is preferred, but a contraction and BiasAdd
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf.go

    			TypeMeta: runtime.TypeMeta{
    				Kind:       kind.Kind,
    				APIVersion: kind.GroupVersion().String(),
    			},
    		}
    	}
    
    	switch t := obj.(type) {
    	case bufferedMarshaller:
    		// this path performs a single allocation during write only when the Allocator wasn't provided
    		// it also requires the caller to implement the more efficient Size and MarshalToSizedBuffer methods
    		encodedSize := uint64(t.Size())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:23 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tpu_dynamic_layout_pass.cc

      return builder->create<TF::TPUCopyWithLayoutOp>(
          execute_launch.getLoc(), llvm::ArrayRef<Type>{input.getType()},
          llvm::ArrayRef<Value>{input, get_layout.getLayout()});
    }
    
    // Performs transformation for a non-replicated input.
    void HandleInput(Value input, const int64_t execute_arg_index,
                     TF::TPUExecuteOp execute, tf_device::LaunchOp execute_launch,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    	ResponseWriteTracker DurationTracker
    
    	// DecodeTracker is used to track latency incurred inside the function
    	// that takes an object returned from the underlying storage layer
    	// (etcd) and performs decoding of the response object.
    	// When called multiple times, the latency incurred inside to
    	// decode func each time will be summed up.
    	DecodeTracker DurationTracker
    }
    
    type latencyTrackersKeyType int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

        use_tf2xla_fallback_ = tf2xla_fallback_device_type.has_value();
        if (tf2xla_fallback_device_type.has_value()) {
          device_type_ = tf2xla_fallback_device_type.value().str();
        }
      }
      /// Performs the lowering to XLA dialect.
      void runOnOperation() override;
    };
    
    #define GEN_PASS_DEF_LEGALIZETFMODULEPASS
    #include "tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf_passes.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    }
    
    // UniversalDeserializer can convert any stored data recognized by this factory into a Go object that satisfies
    // runtime.Object. It does not perform conversion. It does not perform defaulting.
    func (f CodecFactory) UniversalDeserializer() runtime.Decoder {
    	return f.universal
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response.go

    	"k8s.io/apiserver/pkg/endpoints/handlers/responsewriters"
    	"k8s.io/apiserver/pkg/endpoints/metrics"
    	endpointsrequest "k8s.io/apiserver/pkg/endpoints/request"
    
    	klog "k8s.io/klog/v2"
    )
    
    // watchEmbeddedEncoder performs encoding of the embedded object.
    //
    // NOTE: watchEmbeddedEncoder is NOT thread-safe.
    type watchEmbeddedEncoder struct {
    	encoder runtime.Encoder
    
    	ctx context.Context
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 16.5K bytes
    - Viewed (0)
Back to top