Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for has_input (0.16 sec)

  1. tensorflow/compiler/jit/kernels/xla_ops.cc

    }
    
    XlaMergeOp::XlaMergeOp(OpKernelConstruction* ctx) : OpKernel(ctx) {}
    
    void XlaMergeOp::Compute(OpKernelContext* ctx) {
      VLOG(3) << "XlaMergeOp " << def().name();
      int i = 0;
      if (ctx->has_input(i) || ctx->has_input(++i)) {
        ctx->set_output(0, ctx->input(i));
      }
    }
    
    REGISTER_KERNEL_BUILDER(Name("XlaLaunch").Device(DEVICE_CPU), XlaLocalLaunchOp);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      auto cast_input = cast_op.getX();
      // Update input type.
      auto transform_result_type =
          RankedTensorType::get(new_shape, getElementTypeOrSelf(cast_input));
      cast_input.setType(transform_result_type);
      auto block_arg = mlir::dyn_cast<mlir::BlockArgument>(cast_input);
      auto cast_op_input = dyn_cast_or_null<TF::CastOp>(cast_input.getDefiningOp());
      while (block_arg || cast_op_input) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskInputs.java

                        }
                    }
                });
            }
        }
    
        private static class HasInputsVisitor implements PropertyVisitor {
            private boolean hasInputs;
    
            public boolean hasInputs() {
                return hasInputs;
            }
    
            @Override
            public void visitInputFileProperty(
                String propertyName,
                boolean optional,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.td

    // doesn't support non-constant weights.
    def ConvertTFDepthwiseConv2DToXLAConvOp : Pat<
      (TF_CastOp:$conv
        (TF_DepthwiseConv2dNativeOp
          (TF_CastOp:$cast_input
            (TF_SubOp (TF_CastOp $input, $truncate1), $input_zp), $truncate2),
          (TF_CastOp
            (TF_CastOp (TF_IdentityOp $filter), $truncate3), $truncate4),
          $strides, $padding, $explicit_padding,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

                    // Trigger calculating unnamed property names
                    inputs.hasInputs
    
                    // Register another unnamed property
                    inputs.file("input-2.txt")
                    // Trigger calculating unnamed property names again
                    inputs.hasInputs
    
                    // Register first unnamed property
                    outputs.file("output-1.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            }
    
            @Override
            public boolean isAchieved() {
                for (ModelNodeInternal child : scopeNode.getLinks()) {
                    if (!child.isAtLeast(Discovered) && !hasInputs(new NodeAtState(child.getPath(), Discovered))) {
                        return false;
                    }
                }
                return true;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    t|dir|divmod|enumerate|eval|execfile|file|filter|float|format|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|intern|isinstance|issubclass|iter|len|list|locals|long|map|max|memoryview|min|next|object|oct|open|ord|pow|property|range|raw_input|reduce|reload|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|unichr|unicode|vars|xrange|zip)\b/,boolean:/\b(?:True|False|None)\b/,number:/(?:\b(?=\d)|\B(?=\.))(?:0[bo])?(?:(?:\d|0x[\da-f])[\da-f]*\.?\d*|\.\d+)...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. src/syscall/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: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
Back to top