Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SplitV (0.33 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        return success();
      }
    };
    
    // Converts the tf.SplitV op into a series of HLO slice ops when the tensor to
    // be split has fully static shape and the dimension to split and split sizes
    // are constants.
    //
    // This is similar to the conversion for tf.Split op other than that the size of
    // each chunk on the dimension to split is explicitly given as an op operand
    // and they are not necessarily the same.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    - Text logging in Kubernetes components now uses [textlogger](https://pkg.go.dev/k8s.io/klog/v2@v2.120.0/textlogger). The same split streams of info and error log entries with buffering of info entries is now also supported for text output (off by default, alpha feature). Previously, this was only supported for JSON. Performance is better also without split streams. ([#114672](https://github.com/kubernetes/kubernetes/pull/114672), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - Apiserver adds two new metrics `etcd_requests_total` and `etcd_request_errors_total` that allow users to monitor requests to etcd storage, split by operation and resource type. ([#117222](https://github.com/kubernetes/kubernetes/pull/117222), [@iyear](https://github.com/iyear)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	ssaDump = os.Getenv("GOSSAFUNC")
    	ssaDir = os.Getenv("GOSSADIR")
    	if ssaDump != "" {
    		if strings.HasSuffix(ssaDump, "+") {
    			ssaDump = ssaDump[:len(ssaDump)-1]
    			ssaDumpStdout = true
    		}
    		spl := strings.Split(ssaDump, ":")
    		if len(spl) > 1 {
    			ssaDump = spl[0]
    			ssaDumpCFG = spl[1]
    		}
    	}
    }
    
    func InitConfig() {
    	types_ := ssa.NewTypes()
    
    	if Arch.SoftFloat {
    		softfloatInit()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

    - Added support for split image filesystem in kubelet. ([#120616](https://github.com/kubernetes/kubernetes/pull/120616), [@kannon92](https://github.com/kannon92))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top