Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 650 for _kernel (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/g3doc/space_to_depth.md

        kernel = tf.transpose(kernel, [0, 2, 1, 3, 4, 5])
        kernel = tf.reshape(kernel, [4, 4, int(channel), filters])
        kernel = tf.cast(kernel, inputs.dtype)
        ```
    
        If kernel\_size % block\_size != 0, padding is needed for the weight before
        transform, input of Convolution needs to be padded as well.
    
    1.  Rewrite the first convolution
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Oct 24 02:51:43 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/BUILD

        "//tensorflow/core/kernels:variable_ops",
        "//tensorflow/core/kernels/data:finalize_dataset_op",
        "//tensorflow/core/kernels/data:generator_dataset_op",
        "//tensorflow/core/kernels/data:iterator_ops",
        "//tensorflow/core/kernels/data:optional_ops",
        "//tensorflow/core/kernels/data:prefetch_dataset_op",
        "//tensorflow/core/kernels/data:options_dataset_op",
        "//tensorflow/core/profiler/lib:traceme",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  3. pkg/kubelet/sysctl/allowlist_test.go

    	type Test struct {
    		sysctls []string
    		err     bool
    	}
    	for _, test := range []Test{
    		{sysctls: []string{"kernel.msg*", "kernel.sem"}},
    		{sysctls: []string{"kernel/msg*", "kernel/sem"}},
    		{sysctls: []string{" kernel.msg*"}, err: true},
    		{sysctls: []string{"kernel.msg* "}, err: true},
    		{sysctls: []string{"net.-"}, err: true},
    		{sysctls: []string{"net.*.foo"}, err: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:54 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_lift_variables.mlir

      attributes {tf.entry_function = {control_outputs = "", inputs = "", outputs = "dense_2/Add:0"}, tf_saved_model.exported_names = ["serving_default"]} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/c/kernels_experimental.h

    #ifndef TENSORFLOW_C_KERNELS_EXPERIMENTAL_H_
    #define TENSORFLOW_C_KERNELS_EXPERIMENTAL_H_
    
    #include "tensorflow/c/c_api_macros.h"
    #include "tensorflow/c/kernels.h"
    
    // --------------------------------------------------------------------------
    // Experimental kernel C API for TensorFlow.
    //
    // The API here is subject to changes in the future.
    // --------------------------------------------------------------------------
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/README.md

    ```
    kernel/net/ipv4/netfilter/nf_conntrack_ipv4.ko
    kernel/net/netfilter/ipvs/ip_vs.ko
    kernel/net/netfilter/ipvs/ip_vs_rr.ko
    kernel/net/netfilter/ipvs/ip_vs_wrr.ko
    kernel/net/netfilter/ipvs/ip_vs_lc.ko
    kernel/net/netfilter/ipvs/ip_vs_wlc.ko
    kernel/net/netfilter/ipvs/ip_vs_fo.ko
    kernel/net/netfilter/ipvs/ip_vs_ovf.ko
    kernel/net/netfilter/ipvs/ip_vs_lblc.ko
    kernel/net/netfilter/ipvs/ip_vs_lblcr.ko
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

    // derived from other ports by the target specification of the kernel.
    def Quantization_QuantizeRegionOp : Quantization_Op<"region", [
        Pure,
        IsolatedFromAbove,
        SingleBlockImplicitTerminator<"ReturnOp">]> {
      let summary = [{
        The `region` operation wraps high-precision ops as a logical low-precision
        quantized kernel.
      }];
    
      let arguments = (ins Variadic<AnyType>:$inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_initialize_variables_in_session_init.mlir

      attributes {tf.entry_function = {control_outputs = "", inputs = "", outputs = "dense_2/Add:0"}, tf_saved_model.exported_names = ["serving_default"]} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 19 13:38:14 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/tests/keras_imagenet_main_graph_mode.pbtxt

            dim {
              size: 64
            }
          }
        }
      }
      attr {
        key: "shared_name"
        value {
          s: "training/SGD/conv1/kernel/momentum"
        }
      }
    }
    node {
      name: "training/SGD/gradients/loss_1/conv1/kernel/Regularizer/Square_grad/Mul"
      op: "Const"
      device: "/job:localhost/replica:0/task:0/device:GPU:0"
      attr {
        key: "dtype"
        value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 02:52:54 UTC 2019
    - 1.1M bytes
    - Viewed (0)
  10. pkg/util/kernel/version.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kernel
    
    import (
    	"fmt"
    	"os"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/util/version"
    )
    
    type readFileFunc func(string) ([]byte, error)
    
    // GetVersion returns currently running kernel version.
    func GetVersion() (*version.Version, error) {
    	return getVersion(os.ReadFile)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 19:24:34 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top