Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 126 for func_20 (0.38 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/hoist_invariant_ops.mlir

    module attributes {tf_saved_model.semantics} {
    
    // Test not hoisting in TPU functions.
    
    // CHECK-LABEL: func @_tfrt_resource_init
    // CHECK-NEXT: return
    
    // CHECK-LABEL: func private @func2
    func.func private @func2(%arg: tensor<i1>) -> tensor<i32> {
      // CHECK-NOT: tf._TfrtGetResource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 23:54:14 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      mlir::SymbolTable sub_symbol_table(*sub_module);
      auto func_op = sub_symbol_table.lookup<mlir::func::FuncOp>(sig_def_key);
      TF_RET_CHECK(func_op)
          << "Graphdef importer should have created a function named "
          << sig_def_key << ".";
    
      // Use unique SignatureDef key as exported name.
      func_op->setAttr(kTfSavedModelExportedNamesAttr,
                       builder.getStrArrayAttr({sig_def_key}));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. src/internal/coverage/test/roundtrip_test.go

    			units = append(units,
    				coverage.CoverableUnit{StLine: lc, StCol: lc + 1,
    					EnLine: lc + 2, EnCol: lc + 3, NxStmts: lc + 4,
    				})
    			lc += 5
    		}
    		f := coverage.FuncDesc{
    			Funcname: fmt.Sprintf("func_%d_%d", i, fi),
    			Srcfile:  fmt.Sprintf("foo_%d.go", i),
    			Units:    units,
    		}
    		res = append(res, f)
    	}
    	return res
    }
    
    func createBlob(t *testing.T, i int) []byte {
    	nomodule := ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 21:42:05 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

        // results and arguments.
        llvm::DenseMap<OpValue, int> operand_states_;
        llvm::DenseMap<OpValue, int> result_states_;
      };
    
      func::FuncOp func_;
    
      DeviceTarget target_spec_;
    
      StatesManager states_manager_;
    };
    
    }  // namespace quant
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/crypto/sha1/sha1block_amd64.s

    #define FUNC1(a, b, c, d, e) \
    	MOVL	d, R9; \
    	XORL	c, R9; \
    	ANDL	b, R9; \
    	XORL	d, R9
    
    #define FUNC2(a, b, c, d, e) \
    	MOVL	b, R9; \
    	XORL	c, R9; \
    	XORL	d, R9
    
    #define FUNC3(a, b, c, d, e) \
    	MOVL	b, R8; \
    	ORL	c, R8; \
    	ANDL	d, R8; \
    	MOVL	b, R9; \
    	ANDL	c, R9; \
    	ORL	R8, R9
    
    #define FUNC4 FUNC2
    
    #define MIX(a, b, c, d, e, const) \
    	ROLL	$30, b; \
    	ADDL	R9, e; \
    	MOVL	a, R8; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  6. src/runtime/race/output_test.go

    		<-c
    		data = 2
    	}()
    	data = 1
    	<-c
    	wg.Wait()
    	_ = data
    }
    `, []string{`==================
    WARNING: DATA RACE
    Write at 0x[0-9,a-f]+ by goroutine [0-9]:
      main\.main\.func2\(\)
          .*/main\.go:21 \+0x[0-9,a-f]+
    
    Previous write at 0x[0-9,a-f]+ by main goroutine:
      main\.main\(\)
          .*/main\.go:23 \+0x[0-9,a-f]+
    
    Goroutine [0-9] \(running\) created at:
      main\.main\(\)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 20:44:25 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      auto out_types = GetValueTypes(outputs);
      builder.setInsertionPointToEnd(&module.getBodyRegion().back());
      auto func_op = builder.create<func::FuncOp>(
          module.getLoc(), name, builder.getFunctionType(in_types, out_types));
      func_op.setPrivate();
      symbol_table.insert(func_op);
      return func_op;
    }
    
    TF::StatefulPartitionedCallOp EncapsulateOpsInFunc(
        OpBuilder& builder, SymbolTable& symbol_table,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. src/go/printer/testdata/expressions.golden

    			s[i].match[0] < pos {	// earlier match already going; leftmost wins
    			return s
    		}
    	}
    }
    
    func (self *T) foo(x int) *T	{ return self }
    
    func _()	{ module.Func1().Func2() }
    
    func _() {
    	_ = new(T).
    		foo(1).
    		foo(2).
    		foo(3)
    
    	_ = new(T).
    		foo(1).
    		foo(2).	// inline comments
    		foo(3)
    
    	_ = new(T).foo(1).foo(2).foo(3)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  9. src/go/printer/testdata/expressions.raw

    			s[i].match[0] < pos {	// earlier match already going; leftmost wins
    			return s
    		}
    	}
    }
    
    func (self *T) foo(x int) *T	{ return self }
    
    func _()	{ module.Func1().Func2() }
    
    func _() {
    	_ = new(T).
    		foo(1).
    		foo(2).
    		foo(3)
    
    	_ = new(T).
    		foo(1).
    		foo(2).	// inline comments
    		foo(3)
    
    	_ = new(T).foo(1).foo(2).foo(3)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  10. src/internal/trace/trace_test.go

    					{"internal/poll.(*FD).Accept", 0},
    					{"net.(*netFD).accept", 0},
    					{"net.(*TCPListener).accept", 0},
    					{"net.(*TCPListener).Accept", 0},
    					{"main.main.func10", 0},
    				}},
    				{trace.EventStateTransition, "Goroutine Running->Syscall", []frame{
    					{"syscall.read", 0},
    					{"syscall.Read", 0},
    					{"internal/poll.ignoringEINTRIO", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top