Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for op_0 (0.02 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/views/op_view.h

      string FunctionName() const;
      string VariableName() const;
      string OpNameString() const;
      string Summary() const;
      std::vector<string> Description() const;
      bool IsListOp() const;
    
     private:
      OpSpec op_;
      std::vector<ArgView> input_args_;
      std::vector<ArgView> output_args_;
      std::vector<AttrView> argument_attrs_;
      std::vector<OpArgumentView> all_arguments_;
    };
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

      tensorflow::XlaExpression GetExprForOperand(mlir::Value operand,
                                                  mlir::Operation* op,
                                                  int64_t operand_index);
    
      mlir::Operation* op_;
      std::string device_type_;
    
      mlir::PatternRewriter& rewriter_;
      tensorflow::OpOrArgLocNameMapper name_mapper_;
    
      tensorflow::XlaContext* context_;  // Ref-counted.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/arch/arm.go

    // we return the opcode for MRC so that asm doesn't need to import obj/arm.
    func ARMMRCOffset(op obj.As, cond string, x0, x1, x2, x3, x4, x5 int64) (offset int64, op0 obj.As, ok bool) {
    	op1 := int64(0)
    	if op == arm.AMRC {
    		op1 = 1
    	}
    	bits, ok := ParseARMCondition(cond)
    	if !ok {
    		return
    	}
    	offset = (0xe << 24) | // opcode
    		(op1 << 20) | // MCR/MRC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
Back to top