Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for has_input (0.15 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      (TFL_SoftmaxOp
        (TFL_SubOp:$sub $input,
          (TFL_ReduceMaxOp:$max $max_input, (Arith_ConstantOp I32ElementsAttr: $axes),
                                ConstBoolAttrTrue),
        TFL_AF_None),
        $beta),
      (TFL_SoftmaxOp $input, $beta),
      [(IsSame $input, $max_input),
       (AxesIsLastDimension $axes, $max_input),
       (HasOneUse $sub),
       (HasOneUse $max)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // [0, 1] is symmetric across the line Y=0.5.
        Value abs_input = rewriter.create<AbsOp>(loc, input);
        Value abs_input_floor = rewriter.create<FloorOp>(loc, abs_input);
        Value abs_frac_input =
            rewriter.create<SubOp>(loc, abs_input, abs_input_floor);
    
        // Convert values of abs_frac_input > 0.5 to (1 - frac_input) to improve
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	S_IFPSDIR                     = 0x8000000
    	S_IFPSSDIR                    = 0xc000000
    	S_IFREG                       = 0x8000
    	S_IFSOCK                      = 0xc000
    	S_IFSYSEA                     = 0x30000000
    	S_INPUT                       = 0x1
    	S_IREAD                       = 0x100
    	S_IRGRP                       = 0x20
    	S_IROTH                       = 0x4
    	S_IRUSR                       = 0x100
    	S_IRWXG                       = 0x38
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	S_IFPSDIR                     = 0x8000000
    	S_IFPSSDIR                    = 0xc000000
    	S_IFREG                       = 0x8000
    	S_IFSOCK                      = 0xc000
    	S_IFSYSEA                     = 0x30000000
    	S_INPUT                       = 0x1
    	S_IREAD                       = 0x100
    	S_IRGRP                       = 0x20
    	S_IROTH                       = 0x4
    	S_IRUSR                       = 0x100
    	S_IRWXG                       = 0x38
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  5. configure.py

    
    def is_s390x():
      return platform.machine() == 's390x'
    
    
    def is_cygwin():
      return platform.system().startswith('CYGWIN_NT')
    
    
    def get_input(question):
      try:
        try:
          answer = raw_input(question)
        except NameError:
          answer = input(question)  # pylint: disable=bad-builtin
      except EOFError:
        answer = ''
      return answer
    
    
    def symlink_force(target, link_name):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top