Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 139 of 139 for call_op (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    func callclose(fd int) (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.close(C.int(fd)))
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func calldup(oldfd int) (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.dup(C.int(oldfd)))
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go

    	_, e1 := callclose(fd)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup(oldfd int) (fd int, err error) {
    	r0, e1 := calldup(oldfd)
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Exit(code int) {
    	callexit(code)
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

            op.getShape().getType().cast<RankedTensorType>().getShape(),
            rewriter.getI32Type());
        auto cast_op =
            rewriter.create<TFL::CastOp>(op->getLoc(), result_type, op.getShape());
    
        rewriter.replaceOpWithNewOp<ReshapeOp>(op, op.getType(), op.getInput(),
                                               cast_op);
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      return IdentityArithmeticOpFolder<AddV2Op>(*this, operands);
    }
    
    //===----------------------------------------------------------------------===//
    // AllOp
    //===----------------------------------------------------------------------===//
    
    LogicalResult AllOp::verify() {
      AllOp op = *this;
      return VerifyReductionInputAndDims(op.getInput(), op.getReductionIndices(),
                                         op.getLoc());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go

    	r1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_close)), 1, uintptr(fd), 0, 0, 0, 0, 0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func calldup(oldfd int) (r1 uintptr, e1 Errno) {
    	r1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_dup)), 1, uintptr(oldfd), 0, 0, 0, 0, 0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 42.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

          //   ~(A & B & C) & (A & B & C) & ... == False
          //
          //   (~A & ~B & ~C) | A | B | C | ... ==
          //   ~(A | B | C) | (A | B | C) | ... == True
          if (absl::c_all_of(negated_op->GetOperands(), [&](Predicate* p) {
                return simplified_ops_set.contains(p);
              })) {
            return is_and ? MakeFalse() : MakeTrue();
          }
        }
        negated_ops.insert(negated_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        ArrayRef<int64_t> strides = op.getStrides();
        // If stride of every dimension is 1, create tfl.slice and return early.
        // Otherwise, create tfl.strided_slice instead.
        if (llvm::all_of(strides, [](int64_t stride) { return stride == 1; })) {
          rewriter.replaceOpWithNewOp<TFL::SliceOp>(
              op, output_type, op.getOperand(), start_idx, slice_size);
          return;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            RankedTensorType::get(transpose_params.canonicalized_output_shape,
                                  result_type.getElementType());
    
        TF::CastOp cast_op = nullptr;
        if (start_indices_type.getElementType().isUnsignedInteger(32)) {
          cast_op = rewriter.create<TF::CastOp>(
              gather_op->getLoc(),
              RankedTensorType::get(start_indices_type.getShape(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // The argument types don't match the parameter types for the
      // pcall_multi_in_out function. That's fine for a PartitionedCallOp but not
      // for a standard CallOp, so this op can't be lowered.
      // CHECK: "tf.PartitionedCall"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top