Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 105 for Unbounded (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      ];
    }
    
    def TF_TPUCopyWithDynamicShapeOp : TF_Op<"TPUCopyWithDynamicShape", [Pure, AttrSizedOperandSegments]> {
      let summary = [{
    Op that copies host tensors to device with bounded dynamic shape support.
      }];
    
      let description = [{
    This op copies the padded tensor on cpu to TPU without the padded data. `tensors` 
    is a list of cpu tensors with padded data. `unpadded_sizes` is a list of shape
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "format": "int32",
              "type": "integer"
            }
          },
          "type": "object"
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        and sets the shape of these inputs to be dynamic shaped. This will ensure
        that the generated HLO program is correctly reflecting the dynamic shape.
      }];
    
      // Required for mhlo bounded shape extension.
      let dependentDialects = ["mhlo::MhloDialect"];
      let constructor = "TFTPU::CreateTPUAnnotateDynamicShapeInputsPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. src/os/os_test.go

    		openDir()
    		fn(0, 105, nil)
    		fn(0, 0, nil)
    		d.Close()
    
    		// Slurp with -1 instead
    		openDir()
    		fn(-1, 105, nil)
    		fn(-2, 0, nil)
    		fn(0, 0, nil)
    		d.Close()
    
    		// Test the bounded case
    		openDir()
    		fn(1, 1, nil)
    		fn(2, 2, nil)
    		fn(105, 102, nil) // and tests buffer >100 case
    		fn(3, 0, io.EOF)
    		d.Close()
    	}
    }
    
    func touch(t *testing.T, name string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          return failure();
    
        // We also need constant begin/end indices and strides to perform padding
        // calculations.
        // Bounded shape after performing strided slice
        SmallVector<int64_t, 4> shape;
        // Bounded begin, end, and strides for strided slice
        SmallVector<int64_t, 4> begin_indices, end_indices, strides;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (auto input_ty = mlir::dyn_cast<RankedTensorType>(old_arg_type)) {
        ArrayRef<int64_t> bounds = hlo::encodingToBounds(input_ty.getEncoding());
        // The input type has bounded dynamic dimension.
        if (!bounds.empty()) {
          SmallVector<int64_t> new_bounds(bounds.begin(), bounds.end());
          SmallVector<int64_t> new_shape(shape.begin(), shape.end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // x & 1 != 0 -> x & 1
    (SETNE (TEST(B|W)const [1] x)) => (AND(L|L)const [1] x)
    (SETB (BT(L|Q)const [0] x)) => (AND(L|Q)const [1] x)
    
    // Recognize bit tests: a&(1<<b) != 0 for b suitably bounded
    // Note that BTx instructions use the carry bit, so we need to convert tests for zero flag
    // into tests for carry flags.
    // ULT and SETB check the carry flag; they are identical to CS and SETCS. Same, mutatis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

              "format": "int32",
              "type": "integer"
            }
          },
          "type": "object"
        },
        "io.k8s.api.storage.v1alpha1.VolumeAttributesClass": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "format": "int32",
              "type": "integer"
            }
          },
          "type": "object"
        },
        "io.k8s.api.storage.v1alpha1.CSIStorageCapacity": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

    // Node annotation with key scheduler.alpha.kubernetes.io/preferAvoidPods and
    // will eventually become a field of NodeStatus.
    message AvoidPods {
      // Bounded-sized list of signatures of pods that should avoid this node, sorted
      // in timestamp order from oldest to newest. Size of the slice is unspecified.
      // +optional
      repeated PreferAvoidPodsEntry preferAvoidPods = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top