Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for abs8 (0.07 sec)

  1. RELEASE.md

            `dtensor.shutdown_tpu_system`.
    
    ## Deprecations
    
    *   The C++ `tensorflow::Code` and `tensorflow::Status` will become aliases of
        respectively `absl::StatusCode` and `absl::Status` in some future release.
        *   Use `tensorflow::OkStatus()` instead of `tensorflow::Status::OK()`.
        *   Stop constructing `Status` objects from `tensorflow::error::Code`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    include "mlir/Interfaces/CallInterfaces.td"
    include "mlir/Interfaces/InferTypeOpInterface.td"
    include "mlir/IR/OpAsmInterface.td"
    include "mlir/IR/SymbolInterfaces.td"
    
    def TF_AbsOp : TF_Op<"Abs", [Pure, TF_Idempotent, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes the absolute value of a tensor.";
    
      let description = [{
    Given a tensor `x`, this operation returns a tensor containing the absolute
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    		errfield: "server",
    	}, {
    		name:     "missing path",
    		nfs:      &core.NFSVolumeSource{Server: "my-server", Path: ""},
    		errtype:  field.ErrorTypeRequired,
    		errfield: "path",
    	}, {
    		name:      "abs path",
    		nfs:       &core.NFSVolumeSource{Server: "my-server", Path: "tmp"},
    		errtype:   field.ErrorTypeInvalid,
    		errfield:  "path",
    		errdetail: "must be an absolute path",
    	},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top